]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
fe8ab488 | 2 | * Copyright (c) 1999-2014 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
39236c6e | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
39236c6e | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
39236c6e | 17 | * |
2d21ac55 A |
18 | * The Original Code and all software distributed under the License are |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
39236c6e | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 27 | */ |
2d21ac55 A |
28 | /* |
29 | * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce | |
30 | * support for mandatory and extensible security protections. This notice | |
31 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
32 | * Version 2.0. | |
33 | */ | |
39236c6e | 34 | #include <stddef.h> |
1c79356b | 35 | |
1c79356b A |
36 | #include <sys/param.h> |
37 | #include <sys/systm.h> | |
38 | #include <sys/kernel.h> | |
39 | #include <sys/malloc.h> | |
40 | #include <sys/mbuf.h> | |
41 | #include <sys/socket.h> | |
91447636 A |
42 | #include <sys/domain.h> |
43 | #include <sys/user.h> | |
2d21ac55 | 44 | #include <sys/random.h> |
316670eb | 45 | #include <sys/socketvar.h> |
1c79356b A |
46 | #include <net/if_dl.h> |
47 | #include <net/if.h> | |
91447636 | 48 | #include <net/route.h> |
1c79356b A |
49 | #include <net/if_var.h> |
50 | #include <net/dlil.h> | |
91447636 | 51 | #include <net/if_arp.h> |
316670eb | 52 | #include <net/iptap.h> |
39236c6e | 53 | #include <net/pktap.h> |
1c79356b A |
54 | #include <sys/kern_event.h> |
55 | #include <sys/kdebug.h> | |
6d2010ae | 56 | #include <sys/mcache.h> |
39236c6e A |
57 | #include <sys/syslog.h> |
58 | #include <sys/protosw.h> | |
59 | #include <sys/priv.h> | |
1c79356b | 60 | |
91447636 | 61 | #include <kern/assert.h> |
1c79356b | 62 | #include <kern/task.h> |
9bccf70c A |
63 | #include <kern/thread.h> |
64 | #include <kern/sched_prim.h> | |
91447636 | 65 | #include <kern/locks.h> |
6d2010ae | 66 | #include <kern/zalloc.h> |
9bccf70c | 67 | |
39236c6e | 68 | #include <net/kpi_protocol.h> |
1c79356b | 69 | #include <net/if_types.h> |
6d2010ae | 70 | #include <net/if_llreach.h> |
91447636 | 71 | #include <net/kpi_interfacefilter.h> |
316670eb A |
72 | #include <net/classq/classq.h> |
73 | #include <net/classq/classq_sfb.h> | |
39236c6e A |
74 | #include <net/flowhash.h> |
75 | #include <net/ntstat.h> | |
91447636 | 76 | |
6d2010ae A |
77 | #if INET |
78 | #include <netinet/in_var.h> | |
79 | #include <netinet/igmp_var.h> | |
316670eb A |
80 | #include <netinet/ip_var.h> |
81 | #include <netinet/tcp.h> | |
82 | #include <netinet/tcp_var.h> | |
83 | #include <netinet/udp.h> | |
84 | #include <netinet/udp_var.h> | |
85 | #include <netinet/if_ether.h> | |
86 | #include <netinet/in_pcb.h> | |
6d2010ae A |
87 | #endif /* INET */ |
88 | ||
89 | #if INET6 | |
90 | #include <netinet6/in6_var.h> | |
91 | #include <netinet6/nd6.h> | |
92 | #include <netinet6/mld6_var.h> | |
39236c6e | 93 | #include <netinet6/scope6_var.h> |
6d2010ae A |
94 | #endif /* INET6 */ |
95 | ||
91447636 | 96 | #include <libkern/OSAtomic.h> |
39236c6e | 97 | #include <libkern/tree.h> |
1c79356b | 98 | |
39236c6e | 99 | #include <dev/random/randomdev.h> |
d52fe63f | 100 | #include <machine/machine_routines.h> |
1c79356b | 101 | |
2d21ac55 | 102 | #include <mach/thread_act.h> |
6d2010ae | 103 | #include <mach/sdt.h> |
2d21ac55 | 104 | |
39236c6e A |
105 | #if CONFIG_MACF |
106 | #include <sys/kauth.h> | |
2d21ac55 | 107 | #include <security/mac_framework.h> |
39236c6e A |
108 | #include <net/ethernet.h> |
109 | #include <net/firewire.h> | |
110 | #endif | |
2d21ac55 | 111 | |
b0d623f7 A |
112 | #if PF |
113 | #include <net/pfvar.h> | |
114 | #endif /* PF */ | |
316670eb A |
115 | #if PF_ALTQ |
116 | #include <net/altq/altq.h> | |
117 | #endif /* PF_ALTQ */ | |
118 | #include <net/pktsched/pktsched.h> | |
b0d623f7 | 119 | |
6d2010ae A |
120 | #define DBG_LAYER_BEG DLILDBG_CODE(DBG_DLIL_STATIC, 0) |
121 | #define DBG_LAYER_END DLILDBG_CODE(DBG_DLIL_STATIC, 2) | |
1c79356b A |
122 | #define DBG_FNC_DLIL_INPUT DLILDBG_CODE(DBG_DLIL_STATIC, (1 << 8)) |
123 | #define DBG_FNC_DLIL_OUTPUT DLILDBG_CODE(DBG_DLIL_STATIC, (2 << 8)) | |
124 | #define DBG_FNC_DLIL_IFOUT DLILDBG_CODE(DBG_DLIL_STATIC, (3 << 8)) | |
125 | ||
1c79356b A |
126 | #define MAX_FRAME_TYPE_SIZE 4 /* LONGWORDS */ |
127 | #define MAX_LINKADDR 4 /* LONGWORDS */ | |
128 | #define M_NKE M_IFADDR | |
129 | ||
2d21ac55 | 130 | #if 1 |
91447636 A |
131 | #define DLIL_PRINTF printf |
132 | #else | |
133 | #define DLIL_PRINTF kprintf | |
134 | #endif | |
135 | ||
6d2010ae A |
136 | #define IF_DATA_REQUIRE_ALIGNED_64(f) \ |
137 | _CASSERT(!(offsetof(struct if_data_internal, f) % sizeof (u_int64_t))) | |
d1ecb069 | 138 | |
6d2010ae A |
139 | #define IFNET_IF_DATA_REQUIRE_ALIGNED_64(f) \ |
140 | _CASSERT(!(offsetof(struct ifnet, if_data.f) % sizeof (u_int64_t))) | |
141 | ||
91447636 | 142 | enum { |
2d21ac55 A |
143 | kProtoKPI_v1 = 1, |
144 | kProtoKPI_v2 = 2 | |
91447636 A |
145 | }; |
146 | ||
6d2010ae A |
147 | /* |
148 | * List of if_proto structures in if_proto_hash[] is protected by | |
149 | * the ifnet lock. The rest of the fields are initialized at protocol | |
150 | * attach time and never change, thus no lock required as long as | |
151 | * a reference to it is valid, via if_proto_ref(). | |
152 | */ | |
91447636 | 153 | struct if_proto { |
6d2010ae A |
154 | SLIST_ENTRY(if_proto) next_hash; |
155 | u_int32_t refcount; | |
156 | u_int32_t detached; | |
157 | struct ifnet *ifp; | |
91447636 | 158 | protocol_family_t protocol_family; |
6d2010ae | 159 | int proto_kpi; |
91447636 | 160 | union { |
91447636 | 161 | struct { |
6d2010ae A |
162 | proto_media_input input; |
163 | proto_media_preout pre_output; | |
164 | proto_media_event event; | |
165 | proto_media_ioctl ioctl; | |
91447636 A |
166 | proto_media_detached detached; |
167 | proto_media_resolve_multi resolve_multi; | |
168 | proto_media_send_arp send_arp; | |
169 | } v1; | |
2d21ac55 A |
170 | struct { |
171 | proto_media_input_v2 input; | |
6d2010ae A |
172 | proto_media_preout pre_output; |
173 | proto_media_event event; | |
174 | proto_media_ioctl ioctl; | |
2d21ac55 A |
175 | proto_media_detached detached; |
176 | proto_media_resolve_multi resolve_multi; | |
177 | proto_media_send_arp send_arp; | |
178 | } v2; | |
91447636 | 179 | } kpi; |
1c79356b A |
180 | }; |
181 | ||
91447636 A |
182 | SLIST_HEAD(proto_hash_entry, if_proto); |
183 | ||
6d2010ae A |
184 | #define DLIL_SDLMAXLEN 64 |
185 | #define DLIL_SDLDATALEN \ | |
186 | (DLIL_SDLMAXLEN - offsetof(struct sockaddr_dl, sdl_data[0])) | |
1c79356b | 187 | |
9bccf70c | 188 | struct dlil_ifnet { |
6d2010ae A |
189 | struct ifnet dl_if; /* public ifnet */ |
190 | /* | |
316670eb | 191 | * DLIL private fields, protected by dl_if_lock |
6d2010ae A |
192 | */ |
193 | decl_lck_mtx_data(, dl_if_lock); | |
194 | TAILQ_ENTRY(dlil_ifnet) dl_if_link; /* dlil_ifnet link */ | |
195 | u_int32_t dl_if_flags; /* flags (below) */ | |
196 | u_int32_t dl_if_refcnt; /* refcnt */ | |
197 | void (*dl_if_trace)(struct dlil_ifnet *, int); /* ref trace callback */ | |
198 | void *dl_if_uniqueid; /* unique interface id */ | |
199 | size_t dl_if_uniqueid_len; /* length of the unique id */ | |
200 | char dl_if_namestorage[IFNAMSIZ]; /* interface name storage */ | |
39236c6e | 201 | char dl_if_xnamestorage[IFXNAMSIZ]; /* external name storage */ |
6d2010ae A |
202 | struct { |
203 | struct ifaddr ifa; /* lladdr ifa */ | |
204 | u_int8_t asdl[DLIL_SDLMAXLEN]; /* addr storage */ | |
205 | u_int8_t msdl[DLIL_SDLMAXLEN]; /* mask storage */ | |
206 | } dl_if_lladdr; | |
316670eb A |
207 | u_int8_t dl_if_descstorage[IF_DESCSIZE]; /* desc storage */ |
208 | struct dlil_threading_info dl_if_inpstorage; /* input thread storage */ | |
6d2010ae A |
209 | ctrace_t dl_if_attach; /* attach PC stacktrace */ |
210 | ctrace_t dl_if_detach; /* detach PC stacktrace */ | |
211 | }; | |
212 | ||
213 | /* Values for dl_if_flags (private to DLIL) */ | |
214 | #define DLIF_INUSE 0x1 /* DLIL ifnet recycler, ifnet in use */ | |
215 | #define DLIF_REUSE 0x2 /* DLIL ifnet recycles, ifnet is not new */ | |
216 | #define DLIF_DEBUG 0x4 /* has debugging info */ | |
217 | ||
218 | #define IF_REF_TRACE_HIST_SIZE 8 /* size of ref trace history */ | |
219 | ||
220 | /* For gdb */ | |
221 | __private_extern__ unsigned int if_ref_trace_hist_size = IF_REF_TRACE_HIST_SIZE; | |
222 | ||
223 | struct dlil_ifnet_dbg { | |
224 | struct dlil_ifnet dldbg_dlif; /* dlil_ifnet */ | |
225 | u_int16_t dldbg_if_refhold_cnt; /* # ifnet references */ | |
226 | u_int16_t dldbg_if_refrele_cnt; /* # ifnet releases */ | |
227 | /* | |
228 | * Circular lists of ifnet_{reference,release} callers. | |
229 | */ | |
230 | ctrace_t dldbg_if_refhold[IF_REF_TRACE_HIST_SIZE]; | |
231 | ctrace_t dldbg_if_refrele[IF_REF_TRACE_HIST_SIZE]; | |
1c79356b A |
232 | }; |
233 | ||
6d2010ae A |
234 | #define DLIL_TO_IFP(s) (&s->dl_if) |
235 | #define IFP_TO_DLIL(s) ((struct dlil_ifnet *)s) | |
236 | ||
91447636 A |
237 | struct ifnet_filter { |
238 | TAILQ_ENTRY(ifnet_filter) filt_next; | |
6d2010ae | 239 | u_int32_t filt_skip; |
39236c6e | 240 | u_int32_t filt_flags; |
6d2010ae A |
241 | ifnet_t filt_ifp; |
242 | const char *filt_name; | |
243 | void *filt_cookie; | |
244 | protocol_family_t filt_protocol; | |
245 | iff_input_func filt_input; | |
246 | iff_output_func filt_output; | |
247 | iff_event_func filt_event; | |
248 | iff_ioctl_func filt_ioctl; | |
249 | iff_detached_func filt_detached; | |
1c79356b A |
250 | }; |
251 | ||
2d21ac55 | 252 | struct proto_input_entry; |
55e303ae | 253 | |
91447636 | 254 | static TAILQ_HEAD(, dlil_ifnet) dlil_ifnet_head; |
91447636 | 255 | static lck_grp_t *dlil_lock_group; |
6d2010ae | 256 | lck_grp_t *ifnet_lock_group; |
91447636 | 257 | static lck_grp_t *ifnet_head_lock_group; |
316670eb A |
258 | static lck_grp_t *ifnet_snd_lock_group; |
259 | static lck_grp_t *ifnet_rcv_lock_group; | |
6d2010ae | 260 | lck_attr_t *ifnet_lock_attr; |
7ddcb079 A |
261 | decl_lck_rw_data(static, ifnet_head_lock); |
262 | decl_lck_mtx_data(static, dlil_ifnet_lock); | |
39236c6e | 263 | u_int32_t dlil_filter_disable_tso_count = 0; |
316670eb | 264 | |
6d2010ae A |
265 | #if DEBUG |
266 | static unsigned int ifnet_debug = 1; /* debugging (enabled) */ | |
267 | #else | |
268 | static unsigned int ifnet_debug; /* debugging (disabled) */ | |
269 | #endif /* !DEBUG */ | |
270 | static unsigned int dlif_size; /* size of dlil_ifnet to allocate */ | |
271 | static unsigned int dlif_bufsize; /* size of dlif_size + headroom */ | |
272 | static struct zone *dlif_zone; /* zone for dlil_ifnet */ | |
273 | ||
274 | #define DLIF_ZONE_MAX 64 /* maximum elements in zone */ | |
275 | #define DLIF_ZONE_NAME "ifnet" /* zone name */ | |
276 | ||
277 | static unsigned int dlif_filt_size; /* size of ifnet_filter */ | |
278 | static struct zone *dlif_filt_zone; /* zone for ifnet_filter */ | |
279 | ||
280 | #define DLIF_FILT_ZONE_MAX 8 /* maximum elements in zone */ | |
281 | #define DLIF_FILT_ZONE_NAME "ifnet_filter" /* zone name */ | |
282 | ||
6d2010ae A |
283 | static unsigned int dlif_phash_size; /* size of ifnet proto hash table */ |
284 | static struct zone *dlif_phash_zone; /* zone for ifnet proto hash table */ | |
285 | ||
286 | #define DLIF_PHASH_ZONE_MAX DLIF_ZONE_MAX /* maximum elements in zone */ | |
287 | #define DLIF_PHASH_ZONE_NAME "ifnet_proto_hash" /* zone name */ | |
288 | ||
289 | static unsigned int dlif_proto_size; /* size of if_proto */ | |
290 | static struct zone *dlif_proto_zone; /* zone for if_proto */ | |
291 | ||
292 | #define DLIF_PROTO_ZONE_MAX (DLIF_ZONE_MAX*2) /* maximum elements in zone */ | |
293 | #define DLIF_PROTO_ZONE_NAME "ifnet_proto" /* zone name */ | |
294 | ||
316670eb A |
295 | static unsigned int dlif_tcpstat_size; /* size of tcpstat_local to allocate */ |
296 | static unsigned int dlif_tcpstat_bufsize; /* size of dlif_tcpstat_size + headroom */ | |
297 | static struct zone *dlif_tcpstat_zone; /* zone for tcpstat_local */ | |
298 | ||
299 | #define DLIF_TCPSTAT_ZONE_MAX 1 /* maximum elements in zone */ | |
300 | #define DLIF_TCPSTAT_ZONE_NAME "ifnet_tcpstat" /* zone name */ | |
301 | ||
302 | static unsigned int dlif_udpstat_size; /* size of udpstat_local to allocate */ | |
303 | static unsigned int dlif_udpstat_bufsize; /* size of dlif_udpstat_size + headroom */ | |
304 | static struct zone *dlif_udpstat_zone; /* zone for udpstat_local */ | |
305 | ||
306 | #define DLIF_UDPSTAT_ZONE_MAX 1 /* maximum elements in zone */ | |
307 | #define DLIF_UDPSTAT_ZONE_NAME "ifnet_udpstat" /* zone name */ | |
308 | ||
d1ecb069 A |
309 | /* |
310 | * Updating this variable should be done by first acquiring the global | |
311 | * radix node head (rnh_lock), in tandem with settting/clearing the | |
312 | * PR_AGGDRAIN for routedomain. | |
313 | */ | |
314 | u_int32_t ifnet_aggressive_drainers; | |
315 | static u_int32_t net_rtref; | |
d1ecb069 | 316 | |
316670eb A |
317 | static struct dlil_main_threading_info dlil_main_input_thread_info; |
318 | __private_extern__ struct dlil_threading_info *dlil_main_input_thread = | |
319 | (struct dlil_threading_info *)&dlil_main_input_thread_info; | |
2d21ac55 | 320 | |
91447636 | 321 | static int dlil_event_internal(struct ifnet *ifp, struct kev_msg *msg); |
91447636 | 322 | static int dlil_detach_filter_internal(interface_filter_t filter, int detached); |
6d2010ae A |
323 | static void dlil_if_trace(struct dlil_ifnet *, int); |
324 | static void if_proto_ref(struct if_proto *); | |
325 | static void if_proto_free(struct if_proto *); | |
326 | static struct if_proto *find_attached_proto(struct ifnet *, u_int32_t); | |
327 | static int dlil_ifp_proto_count(struct ifnet *); | |
328 | static void if_flt_monitor_busy(struct ifnet *); | |
329 | static void if_flt_monitor_unbusy(struct ifnet *); | |
330 | static void if_flt_monitor_enter(struct ifnet *); | |
331 | static void if_flt_monitor_leave(struct ifnet *); | |
332 | static int dlil_interface_filters_input(struct ifnet *, struct mbuf **, | |
333 | char **, protocol_family_t); | |
334 | static int dlil_interface_filters_output(struct ifnet *, struct mbuf **, | |
335 | protocol_family_t); | |
336 | static struct ifaddr *dlil_alloc_lladdr(struct ifnet *, | |
337 | const struct sockaddr_dl *); | |
338 | static int ifnet_lookup(struct ifnet *); | |
339 | static void if_purgeaddrs(struct ifnet *); | |
340 | ||
341 | static errno_t ifproto_media_input_v1(struct ifnet *, protocol_family_t, | |
342 | struct mbuf *, char *); | |
343 | static errno_t ifproto_media_input_v2(struct ifnet *, protocol_family_t, | |
344 | struct mbuf *); | |
345 | static errno_t ifproto_media_preout(struct ifnet *, protocol_family_t, | |
346 | mbuf_t *, const struct sockaddr *, void *, char *, char *); | |
347 | static void ifproto_media_event(struct ifnet *, protocol_family_t, | |
348 | const struct kev_msg *); | |
349 | static errno_t ifproto_media_ioctl(struct ifnet *, protocol_family_t, | |
350 | unsigned long, void *); | |
351 | static errno_t ifproto_media_resolve_multi(ifnet_t, const struct sockaddr *, | |
352 | struct sockaddr_dl *, size_t); | |
353 | static errno_t ifproto_media_send_arp(struct ifnet *, u_short, | |
354 | const struct sockaddr_dl *, const struct sockaddr *, | |
355 | const struct sockaddr_dl *, const struct sockaddr *); | |
356 | ||
357 | static errno_t ifp_if_output(struct ifnet *, struct mbuf *); | |
316670eb A |
358 | static void ifp_if_start(struct ifnet *); |
359 | static void ifp_if_input_poll(struct ifnet *, u_int32_t, u_int32_t, | |
360 | struct mbuf **, struct mbuf **, u_int32_t *, u_int32_t *); | |
361 | static errno_t ifp_if_ctl(struct ifnet *, ifnet_ctl_cmd_t, u_int32_t, void *); | |
6d2010ae A |
362 | static errno_t ifp_if_demux(struct ifnet *, struct mbuf *, char *, |
363 | protocol_family_t *); | |
364 | static errno_t ifp_if_add_proto(struct ifnet *, protocol_family_t, | |
365 | const struct ifnet_demux_desc *, u_int32_t); | |
366 | static errno_t ifp_if_del_proto(struct ifnet *, protocol_family_t); | |
367 | static errno_t ifp_if_check_multi(struct ifnet *, const struct sockaddr *); | |
368 | static errno_t ifp_if_framer(struct ifnet *, struct mbuf **, | |
39236c6e A |
369 | const struct sockaddr *, const char *, const char *); |
370 | static errno_t ifp_if_framer_extended(struct ifnet *, struct mbuf **, | |
371 | const struct sockaddr *, const char *, const char *, | |
372 | u_int32_t *, u_int32_t *); | |
6d2010ae A |
373 | static errno_t ifp_if_set_bpf_tap(struct ifnet *, bpf_tap_mode, bpf_packet_func); |
374 | static void ifp_if_free(struct ifnet *); | |
375 | static void ifp_if_event(struct ifnet *, const struct kev_msg *); | |
316670eb A |
376 | static __inline void ifp_inc_traffic_class_in(struct ifnet *, struct mbuf *); |
377 | static __inline void ifp_inc_traffic_class_out(struct ifnet *, struct mbuf *); | |
6d2010ae | 378 | |
316670eb A |
379 | static void dlil_main_input_thread_func(void *, wait_result_t); |
380 | static void dlil_input_thread_func(void *, wait_result_t); | |
381 | static void dlil_rxpoll_input_thread_func(void *, wait_result_t); | |
6d2010ae | 382 | static int dlil_create_input_thread(ifnet_t, struct dlil_threading_info *); |
316670eb A |
383 | static void dlil_terminate_input_thread(struct dlil_threading_info *); |
384 | static void dlil_input_stats_add(const struct ifnet_stat_increment_param *, | |
385 | struct dlil_threading_info *, boolean_t); | |
386 | static void dlil_input_stats_sync(struct ifnet *, struct dlil_threading_info *); | |
387 | static void dlil_input_packet_list_common(struct ifnet *, struct mbuf *, | |
388 | u_int32_t, ifnet_model_t, boolean_t); | |
389 | static errno_t ifnet_input_common(struct ifnet *, struct mbuf *, struct mbuf *, | |
390 | const struct ifnet_stat_increment_param *, boolean_t, boolean_t); | |
391 | ||
39236c6e A |
392 | #if DEBUG |
393 | static void dlil_verify_sum16(void); | |
394 | #endif /* DEBUG */ | |
395 | static void dlil_output_cksum_dbg(struct ifnet *, struct mbuf *, uint32_t, | |
396 | protocol_family_t); | |
397 | static void dlil_input_cksum_dbg(struct ifnet *, struct mbuf *, char *, | |
398 | protocol_family_t); | |
399 | ||
316670eb A |
400 | static void ifnet_detacher_thread_func(void *, wait_result_t); |
401 | static int ifnet_detacher_thread_cont(int); | |
6d2010ae A |
402 | static void ifnet_detach_final(struct ifnet *); |
403 | static void ifnet_detaching_enqueue(struct ifnet *); | |
404 | static struct ifnet *ifnet_detaching_dequeue(void); | |
405 | ||
316670eb A |
406 | static void ifnet_start_thread_fn(void *, wait_result_t); |
407 | static void ifnet_poll_thread_fn(void *, wait_result_t); | |
408 | static void ifnet_poll(struct ifnet *); | |
409 | ||
6d2010ae A |
410 | static void ifp_src_route_copyout(struct ifnet *, struct route *); |
411 | static void ifp_src_route_copyin(struct ifnet *, struct route *); | |
412 | #if INET6 | |
413 | static void ifp_src_route6_copyout(struct ifnet *, struct route_in6 *); | |
414 | static void ifp_src_route6_copyin(struct ifnet *, struct route_in6 *); | |
415 | #endif /* INET6 */ | |
416 | ||
316670eb | 417 | static int sysctl_rxpoll SYSCTL_HANDLER_ARGS; |
39236c6e A |
418 | static int sysctl_rxpoll_mode_holdtime SYSCTL_HANDLER_ARGS; |
419 | static int sysctl_rxpoll_sample_holdtime SYSCTL_HANDLER_ARGS; | |
420 | static int sysctl_rxpoll_interval_time SYSCTL_HANDLER_ARGS; | |
421 | static int sysctl_rxpoll_wlowat SYSCTL_HANDLER_ARGS; | |
422 | static int sysctl_rxpoll_whiwat SYSCTL_HANDLER_ARGS; | |
316670eb A |
423 | static int sysctl_sndq_maxlen SYSCTL_HANDLER_ARGS; |
424 | static int sysctl_rcvq_maxlen SYSCTL_HANDLER_ARGS; | |
39236c6e A |
425 | static int sysctl_hwcksum_dbg_mode SYSCTL_HANDLER_ARGS; |
426 | static int sysctl_hwcksum_dbg_partial_rxoff_forced SYSCTL_HANDLER_ARGS; | |
427 | static int sysctl_hwcksum_dbg_partial_rxoff_adj SYSCTL_HANDLER_ARGS; | |
316670eb | 428 | |
6d2010ae A |
429 | /* The following are protected by dlil_ifnet_lock */ |
430 | static TAILQ_HEAD(, ifnet) ifnet_detaching_head; | |
431 | static u_int32_t ifnet_detaching_cnt; | |
432 | static void *ifnet_delayed_run; /* wait channel for detaching thread */ | |
433 | ||
39236c6e A |
434 | decl_lck_mtx_data(static, ifnet_fc_lock); |
435 | ||
436 | static uint32_t ifnet_flowhash_seed; | |
437 | ||
438 | struct ifnet_flowhash_key { | |
439 | char ifk_name[IFNAMSIZ]; | |
440 | uint32_t ifk_unit; | |
441 | uint32_t ifk_flags; | |
442 | uint32_t ifk_eflags; | |
443 | uint32_t ifk_capabilities; | |
444 | uint32_t ifk_capenable; | |
445 | uint32_t ifk_output_sched_model; | |
446 | uint32_t ifk_rand1; | |
447 | uint32_t ifk_rand2; | |
448 | }; | |
449 | ||
450 | /* Flow control entry per interface */ | |
451 | struct ifnet_fc_entry { | |
452 | RB_ENTRY(ifnet_fc_entry) ifce_entry; | |
453 | u_int32_t ifce_flowhash; | |
454 | struct ifnet *ifce_ifp; | |
455 | }; | |
456 | ||
457 | static uint32_t ifnet_calc_flowhash(struct ifnet *); | |
458 | static int ifce_cmp(const struct ifnet_fc_entry *, | |
459 | const struct ifnet_fc_entry *); | |
460 | static int ifnet_fc_add(struct ifnet *); | |
461 | static struct ifnet_fc_entry *ifnet_fc_get(u_int32_t); | |
462 | static void ifnet_fc_entry_free(struct ifnet_fc_entry *); | |
463 | ||
464 | /* protected by ifnet_fc_lock */ | |
465 | RB_HEAD(ifnet_fc_tree, ifnet_fc_entry) ifnet_fc_tree; | |
466 | RB_PROTOTYPE(ifnet_fc_tree, ifnet_fc_entry, ifce_entry, ifce_cmp); | |
467 | RB_GENERATE(ifnet_fc_tree, ifnet_fc_entry, ifce_entry, ifce_cmp); | |
468 | ||
469 | static unsigned int ifnet_fc_zone_size; /* sizeof ifnet_fc_entry */ | |
470 | static struct zone *ifnet_fc_zone; /* ifnet_fc_entry zone */ | |
471 | ||
472 | #define IFNET_FC_ZONE_NAME "ifnet_fc_zone" | |
473 | #define IFNET_FC_ZONE_MAX 32 | |
474 | ||
6d2010ae A |
475 | extern void bpfdetach(struct ifnet*); |
476 | extern void proto_input_run(void); | |
91447636 | 477 | |
316670eb A |
478 | extern uint32_t udp_count_opportunistic(unsigned int ifindex, |
479 | u_int32_t flags); | |
480 | extern uint32_t tcp_count_opportunistic(unsigned int ifindex, | |
481 | u_int32_t flags); | |
482 | ||
6d2010ae | 483 | __private_extern__ void link_rtrequest(int, struct rtentry *, struct sockaddr *); |
91447636 | 484 | |
39236c6e A |
485 | #if CONFIG_MACF |
486 | int dlil_lladdr_ckreq = 0; | |
487 | #endif | |
488 | ||
b0d623f7 | 489 | #if DEBUG |
39236c6e | 490 | int dlil_verbose = 1; |
b0d623f7 | 491 | #else |
39236c6e | 492 | int dlil_verbose = 0; |
b0d623f7 | 493 | #endif /* DEBUG */ |
6d2010ae | 494 | #if IFNET_INPUT_SANITY_CHK |
6d2010ae | 495 | /* sanity checking of input packet lists received */ |
316670eb A |
496 | static u_int32_t dlil_input_sanity_check = 0; |
497 | #endif /* IFNET_INPUT_SANITY_CHK */ | |
498 | /* rate limit debug messages */ | |
499 | struct timespec dlil_dbgrate = { 1, 0 }; | |
b0d623f7 | 500 | |
6d2010ae | 501 | SYSCTL_DECL(_net_link_generic_system); |
91447636 | 502 | |
39236c6e A |
503 | #if CONFIG_MACF |
504 | SYSCTL_INT(_net_link_generic_system, OID_AUTO, dlil_lladdr_ckreq, | |
505 | CTLFLAG_RW | CTLFLAG_LOCKED, &dlil_lladdr_ckreq, 0, | |
506 | "Require MACF system info check to expose link-layer address"); | |
507 | #endif | |
508 | ||
316670eb A |
509 | SYSCTL_INT(_net_link_generic_system, OID_AUTO, dlil_verbose, |
510 | CTLFLAG_RW | CTLFLAG_LOCKED, &dlil_verbose, 0, "Log DLIL error messages"); | |
511 | ||
512 | #define IF_SNDQ_MINLEN 32 | |
513 | u_int32_t if_sndq_maxlen = IFQ_MAXLEN; | |
514 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, sndq_maxlen, | |
515 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &if_sndq_maxlen, IFQ_MAXLEN, | |
516 | sysctl_sndq_maxlen, "I", "Default transmit queue max length"); | |
517 | ||
518 | #define IF_RCVQ_MINLEN 32 | |
519 | #define IF_RCVQ_MAXLEN 256 | |
520 | u_int32_t if_rcvq_maxlen = IF_RCVQ_MAXLEN; | |
521 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rcvq_maxlen, | |
522 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rcvq_maxlen, IFQ_MAXLEN, | |
523 | sysctl_rcvq_maxlen, "I", "Default receive queue max length"); | |
524 | ||
39236c6e | 525 | #define IF_RXPOLL_DECAY 2 /* ilog2 of EWMA decay rate (4) */ |
316670eb A |
526 | static u_int32_t if_rxpoll_decay = IF_RXPOLL_DECAY; |
527 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, rxpoll_decay, | |
528 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_decay, IF_RXPOLL_DECAY, | |
529 | "ilog2 of EWMA decay rate of avg inbound packets"); | |
530 | ||
39236c6e A |
531 | #define IF_RXPOLL_MODE_HOLDTIME_MIN (10ULL * 1000 * 1000) /* 10 ms */ |
532 | #define IF_RXPOLL_MODE_HOLDTIME (1000ULL * 1000 * 1000) /* 1 sec */ | |
316670eb | 533 | static u_int64_t if_rxpoll_mode_holdtime = IF_RXPOLL_MODE_HOLDTIME; |
39236c6e A |
534 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rxpoll_freeze_time, |
535 | CTLTYPE_QUAD | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_mode_holdtime, | |
536 | IF_RXPOLL_MODE_HOLDTIME, sysctl_rxpoll_mode_holdtime, | |
537 | "Q", "input poll mode freeze time"); | |
316670eb | 538 | |
39236c6e A |
539 | #define IF_RXPOLL_SAMPLETIME_MIN (1ULL * 1000 * 1000) /* 1 ms */ |
540 | #define IF_RXPOLL_SAMPLETIME (10ULL * 1000 * 1000) /* 10 ms */ | |
316670eb | 541 | static u_int64_t if_rxpoll_sample_holdtime = IF_RXPOLL_SAMPLETIME; |
39236c6e A |
542 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rxpoll_sample_time, |
543 | CTLTYPE_QUAD | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_sample_holdtime, | |
544 | IF_RXPOLL_SAMPLETIME, sysctl_rxpoll_sample_holdtime, | |
545 | "Q", "input poll sampling time"); | |
546 | ||
547 | #define IF_RXPOLL_INTERVALTIME_MIN (1ULL * 1000) /* 1 us */ | |
548 | #define IF_RXPOLL_INTERVALTIME (1ULL * 1000 * 1000) /* 1 ms */ | |
549 | static u_int64_t if_rxpoll_interval_time = IF_RXPOLL_INTERVALTIME; | |
550 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rxpoll_interval_time, | |
551 | CTLTYPE_QUAD | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_interval_time, | |
552 | IF_RXPOLL_INTERVALTIME, sysctl_rxpoll_interval_time, | |
553 | "Q", "input poll interval (time)"); | |
554 | ||
555 | #define IF_RXPOLL_INTERVAL_PKTS 0 /* 0 (disabled) */ | |
316670eb A |
556 | static u_int32_t if_rxpoll_interval_pkts = IF_RXPOLL_INTERVAL_PKTS; |
557 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, rxpoll_interval_pkts, | |
558 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_interval_pkts, | |
559 | IF_RXPOLL_INTERVAL_PKTS, "input poll interval (packets)"); | |
560 | ||
39236c6e | 561 | #define IF_RXPOLL_WLOWAT 10 |
316670eb | 562 | static u_int32_t if_rxpoll_wlowat = IF_RXPOLL_WLOWAT; |
39236c6e A |
563 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rxpoll_wakeups_lowat, |
564 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_wlowat, | |
565 | IF_RXPOLL_WLOWAT, sysctl_rxpoll_wlowat, | |
566 | "I", "input poll wakeup low watermark"); | |
316670eb | 567 | |
39236c6e | 568 | #define IF_RXPOLL_WHIWAT 100 |
316670eb | 569 | static u_int32_t if_rxpoll_whiwat = IF_RXPOLL_WHIWAT; |
39236c6e A |
570 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rxpoll_wakeups_hiwat, |
571 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_whiwat, | |
572 | IF_RXPOLL_WHIWAT, sysctl_rxpoll_whiwat, | |
573 | "I", "input poll wakeup high watermark"); | |
316670eb A |
574 | |
575 | static u_int32_t if_rxpoll_max = 0; /* 0 (automatic) */ | |
576 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, rxpoll_max, | |
577 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll_max, 0, | |
578 | "max packets per poll call"); | |
579 | ||
580 | static u_int32_t if_rxpoll = 1; | |
581 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, rxpoll, | |
582 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &if_rxpoll, 0, | |
583 | sysctl_rxpoll, "I", "enable opportunistic input polling"); | |
584 | ||
585 | u_int32_t if_bw_smoothing_val = 3; | |
586 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, if_bw_smoothing_val, | |
587 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_bw_smoothing_val, 0, ""); | |
588 | ||
589 | u_int32_t if_bw_measure_size = 10; | |
590 | SYSCTL_INT(_net_link_generic_system, OID_AUTO, if_bw_measure_size, | |
591 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_bw_measure_size, 0, ""); | |
592 | ||
593 | static u_int32_t cur_dlil_input_threads = 0; | |
594 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, dlil_input_threads, | |
595 | CTLFLAG_RD | CTLFLAG_LOCKED, &cur_dlil_input_threads , 0, | |
596 | "Current number of DLIL input threads"); | |
91447636 | 597 | |
6d2010ae | 598 | #if IFNET_INPUT_SANITY_CHK |
316670eb A |
599 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, dlil_input_sanity_check, |
600 | CTLFLAG_RW | CTLFLAG_LOCKED, &dlil_input_sanity_check , 0, | |
6d2010ae | 601 | "Turn on sanity checking in DLIL input"); |
316670eb | 602 | #endif /* IFNET_INPUT_SANITY_CHK */ |
1c79356b | 603 | |
316670eb A |
604 | static u_int32_t if_flowadv = 1; |
605 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, flow_advisory, | |
606 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_flowadv, 1, | |
607 | "enable flow-advisory mechanism"); | |
608 | ||
fe8ab488 A |
609 | static u_int32_t if_delaybased_queue = 1; |
610 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, delaybased_queue, | |
611 | CTLFLAG_RW | CTLFLAG_LOCKED, &if_delaybased_queue, 1, | |
612 | "enable delay based dynamic queue sizing"); | |
613 | ||
39236c6e A |
614 | static uint64_t hwcksum_in_invalidated = 0; |
615 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
616 | hwcksum_in_invalidated, CTLFLAG_RD | CTLFLAG_LOCKED, | |
617 | &hwcksum_in_invalidated, "inbound packets with invalidated hardware cksum"); | |
618 | ||
619 | uint32_t hwcksum_dbg = 0; | |
620 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, hwcksum_dbg, | |
621 | CTLFLAG_RW | CTLFLAG_LOCKED, &hwcksum_dbg, 0, | |
622 | "enable hardware cksum debugging"); | |
623 | ||
624 | #define HWCKSUM_DBG_PARTIAL_FORCED 0x1 /* forced partial checksum */ | |
625 | #define HWCKSUM_DBG_PARTIAL_RXOFF_ADJ 0x2 /* adjust start offset */ | |
626 | #define HWCKSUM_DBG_FINALIZE_FORCED 0x10 /* forced finalize */ | |
627 | #define HWCKSUM_DBG_MASK \ | |
628 | (HWCKSUM_DBG_PARTIAL_FORCED | HWCKSUM_DBG_PARTIAL_RXOFF_ADJ | \ | |
629 | HWCKSUM_DBG_FINALIZE_FORCED) | |
630 | ||
631 | static uint32_t hwcksum_dbg_mode = 0; | |
632 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, hwcksum_dbg_mode, | |
633 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &hwcksum_dbg_mode, | |
634 | 0, sysctl_hwcksum_dbg_mode, "I", "hardware cksum debugging mode"); | |
635 | ||
636 | static uint64_t hwcksum_dbg_partial_forced = 0; | |
637 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
638 | hwcksum_dbg_partial_forced, CTLFLAG_RD | CTLFLAG_LOCKED, | |
639 | &hwcksum_dbg_partial_forced, "packets forced using partial cksum"); | |
640 | ||
641 | static uint64_t hwcksum_dbg_partial_forced_bytes = 0; | |
642 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
643 | hwcksum_dbg_partial_forced_bytes, CTLFLAG_RD | CTLFLAG_LOCKED, | |
644 | &hwcksum_dbg_partial_forced_bytes, "bytes forced using partial cksum"); | |
645 | ||
646 | static uint32_t hwcksum_dbg_partial_rxoff_forced = 0; | |
647 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, | |
648 | hwcksum_dbg_partial_rxoff_forced, CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, | |
649 | &hwcksum_dbg_partial_rxoff_forced, 0, | |
650 | sysctl_hwcksum_dbg_partial_rxoff_forced, "I", | |
651 | "forced partial cksum rx offset"); | |
652 | ||
653 | static uint32_t hwcksum_dbg_partial_rxoff_adj = 0; | |
654 | SYSCTL_PROC(_net_link_generic_system, OID_AUTO, hwcksum_dbg_partial_rxoff_adj, | |
655 | CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_LOCKED, &hwcksum_dbg_partial_rxoff_adj, | |
656 | 0, sysctl_hwcksum_dbg_partial_rxoff_adj, "I", | |
657 | "adjusted partial cksum rx offset"); | |
658 | ||
659 | static uint64_t hwcksum_dbg_verified = 0; | |
660 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
661 | hwcksum_dbg_verified, CTLFLAG_RD | CTLFLAG_LOCKED, | |
662 | &hwcksum_dbg_verified, "packets verified for having good checksum"); | |
663 | ||
664 | static uint64_t hwcksum_dbg_bad_cksum = 0; | |
665 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
666 | hwcksum_dbg_bad_cksum, CTLFLAG_RD | CTLFLAG_LOCKED, | |
667 | &hwcksum_dbg_bad_cksum, "packets with bad hardware calculated checksum"); | |
668 | ||
669 | static uint64_t hwcksum_dbg_bad_rxoff = 0; | |
670 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
671 | hwcksum_dbg_bad_rxoff, CTLFLAG_RD | CTLFLAG_LOCKED, | |
672 | &hwcksum_dbg_bad_rxoff, "packets with invalid rxoff"); | |
673 | ||
674 | static uint64_t hwcksum_dbg_adjusted = 0; | |
675 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
676 | hwcksum_dbg_adjusted, CTLFLAG_RD | CTLFLAG_LOCKED, | |
677 | &hwcksum_dbg_adjusted, "packets with rxoff adjusted"); | |
678 | ||
679 | static uint64_t hwcksum_dbg_finalized_hdr = 0; | |
680 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
681 | hwcksum_dbg_finalized_hdr, CTLFLAG_RD | CTLFLAG_LOCKED, | |
682 | &hwcksum_dbg_finalized_hdr, "finalized headers"); | |
683 | ||
684 | static uint64_t hwcksum_dbg_finalized_data = 0; | |
685 | SYSCTL_QUAD(_net_link_generic_system, OID_AUTO, | |
686 | hwcksum_dbg_finalized_data, CTLFLAG_RD | CTLFLAG_LOCKED, | |
687 | &hwcksum_dbg_finalized_data, "finalized payloads"); | |
688 | ||
689 | uint32_t hwcksum_tx = 1; | |
690 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, hwcksum_tx, | |
691 | CTLFLAG_RW | CTLFLAG_LOCKED, &hwcksum_tx, 0, | |
692 | "enable transmit hardware checksum offload"); | |
693 | ||
694 | uint32_t hwcksum_rx = 1; | |
695 | SYSCTL_UINT(_net_link_generic_system, OID_AUTO, hwcksum_rx, | |
696 | CTLFLAG_RW | CTLFLAG_LOCKED, &hwcksum_rx, 0, | |
697 | "enable receive hardware checksum offload"); | |
698 | ||
316670eb | 699 | unsigned int net_rxpoll = 1; |
6d2010ae A |
700 | unsigned int net_affinity = 1; |
701 | static kern_return_t dlil_affinity_set(struct thread *, u_int32_t); | |
1c79356b | 702 | |
b36670ce A |
703 | extern u_int32_t inject_buckets; |
704 | ||
2d21ac55 A |
705 | static lck_grp_attr_t *dlil_grp_attributes = NULL; |
706 | static lck_attr_t *dlil_lck_attributes = NULL; | |
91447636 | 707 | |
91447636 | 708 | |
316670eb A |
709 | #define DLIL_INPUT_CHECK(m, ifp) { \ |
710 | struct ifnet *_rcvif = mbuf_pkthdr_rcvif(m); \ | |
711 | if (_rcvif == NULL || (ifp != lo_ifp && _rcvif != ifp) || \ | |
712 | !(mbuf_flags(m) & MBUF_PKTHDR)) { \ | |
713 | panic_plain("%s: invalid mbuf %p\n", __func__, m); \ | |
714 | /* NOTREACHED */ \ | |
715 | } \ | |
716 | } | |
717 | ||
718 | #define DLIL_EWMA(old, new, decay) do { \ | |
719 | u_int32_t _avg; \ | |
720 | if ((_avg = (old)) > 0) \ | |
721 | _avg = (((_avg << (decay)) - _avg) + (new)) >> (decay); \ | |
722 | else \ | |
723 | _avg = (new); \ | |
724 | (old) = _avg; \ | |
725 | } while (0) | |
726 | ||
727 | #define MBPS (1ULL * 1000 * 1000) | |
728 | #define GBPS (MBPS * 1000) | |
729 | ||
730 | struct rxpoll_time_tbl { | |
731 | u_int64_t speed; /* downlink speed */ | |
732 | u_int32_t plowat; /* packets low watermark */ | |
733 | u_int32_t phiwat; /* packets high watermark */ | |
734 | u_int32_t blowat; /* bytes low watermark */ | |
735 | u_int32_t bhiwat; /* bytes high watermark */ | |
736 | }; | |
737 | ||
738 | static struct rxpoll_time_tbl rxpoll_tbl[] = { | |
739 | { 10 * MBPS, 2, 8, (1 * 1024), (6 * 1024) }, | |
740 | { 100 * MBPS, 10, 40, (4 * 1024), (64 * 1024) }, | |
741 | { 1 * GBPS, 10, 40, (4 * 1024), (64 * 1024) }, | |
742 | { 10 * GBPS, 10, 40, (4 * 1024), (64 * 1024) }, | |
743 | { 100 * GBPS, 10, 40, (4 * 1024), (64 * 1024) }, | |
744 | { 0, 0, 0, 0, 0 } | |
745 | }; | |
746 | ||
39236c6e | 747 | int |
b0d623f7 | 748 | proto_hash_value(u_int32_t protocol_family) |
91447636 | 749 | { |
4a3eedf9 A |
750 | /* |
751 | * dlil_proto_unplumb_all() depends on the mapping between | |
752 | * the hash bucket index and the protocol family defined | |
753 | * here; future changes must be applied there as well. | |
754 | */ | |
91447636 A |
755 | switch(protocol_family) { |
756 | case PF_INET: | |
6d2010ae | 757 | return (0); |
91447636 | 758 | case PF_INET6: |
6d2010ae | 759 | return (1); |
91447636 | 760 | case PF_VLAN: |
39236c6e | 761 | return (2); |
6d2010ae | 762 | case PF_UNSPEC: |
91447636 | 763 | default: |
39236c6e | 764 | return (3); |
91447636 A |
765 | } |
766 | } | |
767 | ||
6d2010ae A |
768 | /* |
769 | * Caller must already be holding ifnet lock. | |
770 | */ | |
771 | static struct if_proto * | |
b0d623f7 | 772 | find_attached_proto(struct ifnet *ifp, u_int32_t protocol_family) |
1c79356b | 773 | { |
91447636 | 774 | struct if_proto *proto = NULL; |
b0d623f7 | 775 | u_int32_t i = proto_hash_value(protocol_family); |
6d2010ae A |
776 | |
777 | ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_OWNED); | |
778 | ||
779 | if (ifp->if_proto_hash != NULL) | |
91447636 | 780 | proto = SLIST_FIRST(&ifp->if_proto_hash[i]); |
6d2010ae A |
781 | |
782 | while (proto != NULL && proto->protocol_family != protocol_family) | |
91447636 | 783 | proto = SLIST_NEXT(proto, next_hash); |
6d2010ae A |
784 | |
785 | if (proto != NULL) | |
786 | if_proto_ref(proto); | |
787 | ||
788 | return (proto); | |
1c79356b A |
789 | } |
790 | ||
91447636 A |
791 | static void |
792 | if_proto_ref(struct if_proto *proto) | |
1c79356b | 793 | { |
6d2010ae | 794 | atomic_add_32(&proto->refcount, 1); |
1c79356b A |
795 | } |
796 | ||
6d2010ae A |
797 | extern void if_rtproto_del(struct ifnet *ifp, int protocol); |
798 | ||
91447636 A |
799 | static void |
800 | if_proto_free(struct if_proto *proto) | |
0b4e3aa0 | 801 | { |
6d2010ae A |
802 | u_int32_t oldval; |
803 | struct ifnet *ifp = proto->ifp; | |
804 | u_int32_t proto_family = proto->protocol_family; | |
805 | struct kev_dl_proto_data ev_pr_data; | |
806 | ||
807 | oldval = atomic_add_32_ov(&proto->refcount, -1); | |
808 | if (oldval > 1) | |
809 | return; | |
810 | ||
811 | /* No more reference on this, protocol must have been detached */ | |
812 | VERIFY(proto->detached); | |
813 | ||
814 | if (proto->proto_kpi == kProtoKPI_v1) { | |
815 | if (proto->kpi.v1.detached) | |
816 | proto->kpi.v1.detached(ifp, proto->protocol_family); | |
817 | } | |
818 | if (proto->proto_kpi == kProtoKPI_v2) { | |
819 | if (proto->kpi.v2.detached) | |
820 | proto->kpi.v2.detached(ifp, proto->protocol_family); | |
91447636 | 821 | } |
6d2010ae A |
822 | |
823 | /* | |
824 | * Cleanup routes that may still be in the routing table for that | |
825 | * interface/protocol pair. | |
826 | */ | |
827 | if_rtproto_del(ifp, proto_family); | |
828 | ||
829 | /* | |
830 | * The reserved field carries the number of protocol still attached | |
831 | * (subject to change) | |
832 | */ | |
833 | ifnet_lock_shared(ifp); | |
834 | ev_pr_data.proto_family = proto_family; | |
835 | ev_pr_data.proto_remaining_count = dlil_ifp_proto_count(ifp); | |
836 | ifnet_lock_done(ifp); | |
837 | ||
838 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_PROTO_DETACHED, | |
839 | (struct net_event_data *)&ev_pr_data, | |
840 | sizeof(struct kev_dl_proto_data)); | |
841 | ||
842 | zfree(dlif_proto_zone, proto); | |
0b4e3aa0 A |
843 | } |
844 | ||
91447636 | 845 | __private_extern__ void |
6d2010ae | 846 | ifnet_lock_assert(struct ifnet *ifp, ifnet_lock_assert_t what) |
1c79356b | 847 | { |
6d2010ae A |
848 | unsigned int type = 0; |
849 | int ass = 1; | |
850 | ||
851 | switch (what) { | |
852 | case IFNET_LCK_ASSERT_EXCLUSIVE: | |
853 | type = LCK_RW_ASSERT_EXCLUSIVE; | |
854 | break; | |
855 | ||
856 | case IFNET_LCK_ASSERT_SHARED: | |
857 | type = LCK_RW_ASSERT_SHARED; | |
858 | break; | |
859 | ||
860 | case IFNET_LCK_ASSERT_OWNED: | |
861 | type = LCK_RW_ASSERT_HELD; | |
862 | break; | |
863 | ||
864 | case IFNET_LCK_ASSERT_NOTOWNED: | |
865 | /* nothing to do here for RW lock; bypass assert */ | |
866 | ass = 0; | |
867 | break; | |
868 | ||
869 | default: | |
870 | panic("bad ifnet assert type: %d", what); | |
871 | /* NOTREACHED */ | |
872 | } | |
873 | if (ass) | |
874 | lck_rw_assert(&ifp->if_lock, type); | |
1c79356b A |
875 | } |
876 | ||
91447636 | 877 | __private_extern__ void |
6d2010ae | 878 | ifnet_lock_shared(struct ifnet *ifp) |
1c79356b | 879 | { |
6d2010ae | 880 | lck_rw_lock_shared(&ifp->if_lock); |
1c79356b A |
881 | } |
882 | ||
91447636 | 883 | __private_extern__ void |
6d2010ae | 884 | ifnet_lock_exclusive(struct ifnet *ifp) |
0b4e3aa0 | 885 | { |
6d2010ae | 886 | lck_rw_lock_exclusive(&ifp->if_lock); |
0b4e3aa0 A |
887 | } |
888 | ||
91447636 | 889 | __private_extern__ void |
6d2010ae | 890 | ifnet_lock_done(struct ifnet *ifp) |
1c79356b | 891 | { |
6d2010ae | 892 | lck_rw_done(&ifp->if_lock); |
1c79356b A |
893 | } |
894 | ||
39236c6e A |
895 | #if INET6 |
896 | __private_extern__ void | |
897 | if_inet6data_lock_shared(struct ifnet *ifp) | |
898 | { | |
899 | lck_rw_lock_shared(&ifp->if_inet6data_lock); | |
900 | } | |
901 | ||
902 | __private_extern__ void | |
903 | if_inet6data_lock_exclusive(struct ifnet *ifp) | |
904 | { | |
905 | lck_rw_lock_exclusive(&ifp->if_inet6data_lock); | |
906 | } | |
907 | ||
908 | __private_extern__ void | |
909 | if_inet6data_lock_done(struct ifnet *ifp) | |
910 | { | |
911 | lck_rw_done(&ifp->if_inet6data_lock); | |
912 | } | |
913 | #endif | |
914 | ||
91447636 | 915 | __private_extern__ void |
2d21ac55 | 916 | ifnet_head_lock_shared(void) |
1c79356b | 917 | { |
6d2010ae | 918 | lck_rw_lock_shared(&ifnet_head_lock); |
1c79356b A |
919 | } |
920 | ||
91447636 | 921 | __private_extern__ void |
2d21ac55 | 922 | ifnet_head_lock_exclusive(void) |
91447636 | 923 | { |
6d2010ae | 924 | lck_rw_lock_exclusive(&ifnet_head_lock); |
91447636 | 925 | } |
1c79356b | 926 | |
91447636 | 927 | __private_extern__ void |
2d21ac55 | 928 | ifnet_head_done(void) |
1c79356b | 929 | { |
6d2010ae | 930 | lck_rw_done(&ifnet_head_lock); |
91447636 | 931 | } |
1c79356b | 932 | |
6d2010ae A |
933 | /* |
934 | * Caller must already be holding ifnet lock. | |
935 | */ | |
936 | static int | |
937 | dlil_ifp_proto_count(struct ifnet * ifp) | |
91447636 | 938 | { |
6d2010ae A |
939 | int i, count = 0; |
940 | ||
941 | ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_OWNED); | |
942 | ||
943 | if (ifp->if_proto_hash == NULL) | |
944 | goto done; | |
945 | ||
946 | for (i = 0; i < PROTO_HASH_SLOTS; i++) { | |
947 | struct if_proto *proto; | |
948 | SLIST_FOREACH(proto, &ifp->if_proto_hash[i], next_hash) { | |
949 | count++; | |
91447636 A |
950 | } |
951 | } | |
6d2010ae A |
952 | done: |
953 | return (count); | |
91447636 | 954 | } |
1c79356b | 955 | |
91447636 | 956 | __private_extern__ void |
6d2010ae A |
957 | dlil_post_msg(struct ifnet *ifp, u_int32_t event_subclass, |
958 | u_int32_t event_code, struct net_event_data *event_data, | |
959 | u_int32_t event_data_len) | |
91447636 | 960 | { |
6d2010ae A |
961 | struct net_event_data ev_data; |
962 | struct kev_msg ev_msg; | |
963 | ||
964 | bzero(&ev_msg, sizeof (ev_msg)); | |
965 | bzero(&ev_data, sizeof (ev_data)); | |
966 | /* | |
2d21ac55 | 967 | * a net event always starts with a net_event_data structure |
91447636 A |
968 | * but the caller can generate a simple net event or |
969 | * provide a longer event structure to post | |
970 | */ | |
6d2010ae A |
971 | ev_msg.vendor_code = KEV_VENDOR_APPLE; |
972 | ev_msg.kev_class = KEV_NETWORK_CLASS; | |
973 | ev_msg.kev_subclass = event_subclass; | |
974 | ev_msg.event_code = event_code; | |
975 | ||
976 | if (event_data == NULL) { | |
91447636 A |
977 | event_data = &ev_data; |
978 | event_data_len = sizeof(struct net_event_data); | |
979 | } | |
6d2010ae | 980 | |
fe8ab488 | 981 | strlcpy(&event_data->if_name[0], ifp->if_name, IFNAMSIZ); |
91447636 | 982 | event_data->if_family = ifp->if_family; |
b0d623f7 | 983 | event_data->if_unit = (u_int32_t) ifp->if_unit; |
6d2010ae | 984 | |
91447636 | 985 | ev_msg.dv[0].data_length = event_data_len; |
6d2010ae | 986 | ev_msg.dv[0].data_ptr = event_data; |
91447636 | 987 | ev_msg.dv[1].data_length = 0; |
6d2010ae | 988 | |
91447636 | 989 | dlil_event_internal(ifp, &ev_msg); |
1c79356b A |
990 | } |
991 | ||
316670eb A |
992 | __private_extern__ int |
993 | dlil_alloc_local_stats(struct ifnet *ifp) | |
994 | { | |
995 | int ret = EINVAL; | |
996 | void *buf, *base, **pbuf; | |
997 | ||
998 | if (ifp == NULL) | |
999 | goto end; | |
1000 | ||
1001 | if (ifp->if_tcp_stat == NULL && ifp->if_udp_stat == NULL) { | |
1002 | /* allocate tcpstat_local structure */ | |
1003 | buf = zalloc(dlif_tcpstat_zone); | |
1004 | if (buf == NULL) { | |
1005 | ret = ENOMEM; | |
1006 | goto end; | |
1007 | } | |
1008 | bzero(buf, dlif_tcpstat_bufsize); | |
1009 | ||
1010 | /* Get the 64-bit aligned base address for this object */ | |
1011 | base = (void *)P2ROUNDUP((intptr_t)buf + sizeof (u_int64_t), | |
1012 | sizeof (u_int64_t)); | |
1013 | VERIFY(((intptr_t)base + dlif_tcpstat_size) <= | |
1014 | ((intptr_t)buf + dlif_tcpstat_bufsize)); | |
1015 | ||
1016 | /* | |
1017 | * Wind back a pointer size from the aligned base and | |
1018 | * save the original address so we can free it later. | |
1019 | */ | |
1020 | pbuf = (void **)((intptr_t)base - sizeof (void *)); | |
1021 | *pbuf = buf; | |
1022 | ifp->if_tcp_stat = base; | |
1023 | ||
1024 | /* allocate udpstat_local structure */ | |
1025 | buf = zalloc(dlif_udpstat_zone); | |
1026 | if (buf == NULL) { | |
1027 | ret = ENOMEM; | |
1028 | goto end; | |
1029 | } | |
1030 | bzero(buf, dlif_udpstat_bufsize); | |
1031 | ||
1032 | /* Get the 64-bit aligned base address for this object */ | |
1033 | base = (void *)P2ROUNDUP((intptr_t)buf + sizeof (u_int64_t), | |
1034 | sizeof (u_int64_t)); | |
1035 | VERIFY(((intptr_t)base + dlif_udpstat_size) <= | |
1036 | ((intptr_t)buf + dlif_udpstat_bufsize)); | |
1037 | ||
1038 | /* | |
1039 | * Wind back a pointer size from the aligned base and | |
1040 | * save the original address so we can free it later. | |
1041 | */ | |
1042 | pbuf = (void **)((intptr_t)base - sizeof (void *)); | |
1043 | *pbuf = buf; | |
1044 | ifp->if_udp_stat = base; | |
1045 | ||
1046 | VERIFY(IS_P2ALIGNED(ifp->if_tcp_stat, sizeof (u_int64_t)) && | |
1047 | IS_P2ALIGNED(ifp->if_udp_stat, sizeof (u_int64_t))); | |
1048 | ||
1049 | ret = 0; | |
1050 | } | |
1051 | ||
1052 | end: | |
1053 | if (ret != 0) { | |
1054 | if (ifp->if_tcp_stat != NULL) { | |
1055 | pbuf = (void **) | |
1056 | ((intptr_t)ifp->if_tcp_stat - sizeof (void *)); | |
1057 | zfree(dlif_tcpstat_zone, *pbuf); | |
1058 | ifp->if_tcp_stat = NULL; | |
1059 | } | |
1060 | if (ifp->if_udp_stat != NULL) { | |
1061 | pbuf = (void **) | |
1062 | ((intptr_t)ifp->if_udp_stat - sizeof (void *)); | |
1063 | zfree(dlif_udpstat_zone, *pbuf); | |
1064 | ifp->if_udp_stat = NULL; | |
1065 | } | |
1066 | } | |
1067 | ||
1068 | return (ret); | |
1069 | } | |
1070 | ||
6d2010ae | 1071 | static int |
316670eb | 1072 | dlil_create_input_thread(ifnet_t ifp, struct dlil_threading_info *inp) |
2d21ac55 | 1073 | { |
316670eb A |
1074 | thread_continue_t func; |
1075 | u_int32_t limit; | |
2d21ac55 A |
1076 | int error; |
1077 | ||
316670eb A |
1078 | /* NULL ifp indicates the main input thread, called at dlil_init time */ |
1079 | if (ifp == NULL) { | |
1080 | func = dlil_main_input_thread_func; | |
1081 | VERIFY(inp == dlil_main_input_thread); | |
1082 | (void) strlcat(inp->input_name, | |
1083 | "main_input", DLIL_THREADNAME_LEN); | |
1084 | } else if (net_rxpoll && (ifp->if_eflags & IFEF_RXPOLL)) { | |
1085 | func = dlil_rxpoll_input_thread_func; | |
1086 | VERIFY(inp != dlil_main_input_thread); | |
1087 | (void) snprintf(inp->input_name, DLIL_THREADNAME_LEN, | |
39236c6e | 1088 | "%s_input_poll", if_name(ifp)); |
6d2010ae | 1089 | } else { |
316670eb A |
1090 | func = dlil_input_thread_func; |
1091 | VERIFY(inp != dlil_main_input_thread); | |
1092 | (void) snprintf(inp->input_name, DLIL_THREADNAME_LEN, | |
39236c6e | 1093 | "%s_input", if_name(ifp)); |
6d2010ae | 1094 | } |
316670eb | 1095 | VERIFY(inp->input_thr == THREAD_NULL); |
2d21ac55 | 1096 | |
316670eb A |
1097 | inp->lck_grp = lck_grp_alloc_init(inp->input_name, dlil_grp_attributes); |
1098 | lck_mtx_init(&inp->input_lck, inp->lck_grp, dlil_lck_attributes); | |
1099 | ||
1100 | inp->mode = IFNET_MODEL_INPUT_POLL_OFF; | |
1101 | inp->ifp = ifp; /* NULL for main input thread */ | |
1102 | ||
1103 | net_timerclear(&inp->mode_holdtime); | |
1104 | net_timerclear(&inp->mode_lasttime); | |
1105 | net_timerclear(&inp->sample_holdtime); | |
1106 | net_timerclear(&inp->sample_lasttime); | |
1107 | net_timerclear(&inp->dbg_lasttime); | |
1108 | ||
1109 | /* | |
1110 | * For interfaces that support opportunistic polling, set the | |
1111 | * low and high watermarks for outstanding inbound packets/bytes. | |
1112 | * Also define freeze times for transitioning between modes | |
1113 | * and updating the average. | |
1114 | */ | |
1115 | if (ifp != NULL && net_rxpoll && (ifp->if_eflags & IFEF_RXPOLL)) { | |
1116 | limit = MAX(if_rcvq_maxlen, IF_RCVQ_MINLEN); | |
39236c6e | 1117 | (void) dlil_rxpoll_set_params(ifp, NULL, FALSE); |
316670eb A |
1118 | } else { |
1119 | limit = (u_int32_t)-1; | |
1120 | } | |
1121 | ||
1122 | _qinit(&inp->rcvq_pkts, Q_DROPTAIL, limit); | |
1123 | if (inp == dlil_main_input_thread) { | |
1124 | struct dlil_main_threading_info *inpm = | |
1125 | (struct dlil_main_threading_info *)inp; | |
1126 | _qinit(&inpm->lo_rcvq_pkts, Q_DROPTAIL, limit); | |
1127 | } | |
2d21ac55 | 1128 | |
316670eb A |
1129 | error = kernel_thread_start(func, inp, &inp->input_thr); |
1130 | if (error == KERN_SUCCESS) { | |
1131 | ml_thread_policy(inp->input_thr, MACHINE_GROUP, | |
6d2010ae | 1132 | (MACHINE_NETWORK_GROUP|MACHINE_NETWORK_NETISR)); |
2d21ac55 | 1133 | /* |
316670eb A |
1134 | * We create an affinity set so that the matching workloop |
1135 | * thread or the starter thread (for loopback) can be | |
1136 | * scheduled on the same processor set as the input thread. | |
2d21ac55 | 1137 | */ |
316670eb A |
1138 | if (net_affinity) { |
1139 | struct thread *tp = inp->input_thr; | |
2d21ac55 A |
1140 | u_int32_t tag; |
1141 | /* | |
1142 | * Randomize to reduce the probability | |
1143 | * of affinity tag namespace collision. | |
1144 | */ | |
1145 | read_random(&tag, sizeof (tag)); | |
1146 | if (dlil_affinity_set(tp, tag) == KERN_SUCCESS) { | |
1147 | thread_reference(tp); | |
316670eb A |
1148 | inp->tag = tag; |
1149 | inp->net_affinity = TRUE; | |
2d21ac55 A |
1150 | } |
1151 | } | |
316670eb A |
1152 | } else if (inp == dlil_main_input_thread) { |
1153 | panic_plain("%s: couldn't create main input thread", __func__); | |
1154 | /* NOTREACHED */ | |
2d21ac55 | 1155 | } else { |
39236c6e A |
1156 | panic_plain("%s: couldn't create %s input thread", __func__, |
1157 | if_name(ifp)); | |
6d2010ae | 1158 | /* NOTREACHED */ |
2d21ac55 | 1159 | } |
b0d623f7 | 1160 | OSAddAtomic(1, &cur_dlil_input_threads); |
316670eb | 1161 | |
6d2010ae | 1162 | return (error); |
2d21ac55 A |
1163 | } |
1164 | ||
316670eb A |
1165 | static void |
1166 | dlil_terminate_input_thread(struct dlil_threading_info *inp) | |
1167 | { | |
1168 | struct ifnet *ifp; | |
1169 | ||
1170 | VERIFY(current_thread() == inp->input_thr); | |
1171 | VERIFY(inp != dlil_main_input_thread); | |
1172 | ||
1173 | OSAddAtomic(-1, &cur_dlil_input_threads); | |
1174 | ||
1175 | lck_mtx_destroy(&inp->input_lck, inp->lck_grp); | |
1176 | lck_grp_free(inp->lck_grp); | |
1177 | ||
1178 | inp->input_waiting = 0; | |
1179 | inp->wtot = 0; | |
1180 | bzero(inp->input_name, sizeof (inp->input_name)); | |
1181 | ifp = inp->ifp; | |
1182 | inp->ifp = NULL; | |
1183 | VERIFY(qhead(&inp->rcvq_pkts) == NULL && qempty(&inp->rcvq_pkts)); | |
1184 | qlimit(&inp->rcvq_pkts) = 0; | |
1185 | bzero(&inp->stats, sizeof (inp->stats)); | |
1186 | ||
1187 | VERIFY(!inp->net_affinity); | |
1188 | inp->input_thr = THREAD_NULL; | |
1189 | VERIFY(inp->wloop_thr == THREAD_NULL); | |
1190 | VERIFY(inp->poll_thr == THREAD_NULL); | |
1191 | VERIFY(inp->tag == 0); | |
1192 | ||
1193 | inp->mode = IFNET_MODEL_INPUT_POLL_OFF; | |
1194 | bzero(&inp->tstats, sizeof (inp->tstats)); | |
1195 | bzero(&inp->pstats, sizeof (inp->pstats)); | |
1196 | bzero(&inp->sstats, sizeof (inp->sstats)); | |
1197 | ||
1198 | net_timerclear(&inp->mode_holdtime); | |
1199 | net_timerclear(&inp->mode_lasttime); | |
1200 | net_timerclear(&inp->sample_holdtime); | |
1201 | net_timerclear(&inp->sample_lasttime); | |
1202 | net_timerclear(&inp->dbg_lasttime); | |
1203 | ||
1204 | #if IFNET_INPUT_SANITY_CHK | |
1205 | inp->input_mbuf_cnt = 0; | |
1206 | #endif /* IFNET_INPUT_SANITY_CHK */ | |
1207 | ||
1208 | if (dlil_verbose) { | |
39236c6e A |
1209 | printf("%s: input thread terminated\n", |
1210 | if_name(ifp)); | |
316670eb A |
1211 | } |
1212 | ||
1213 | /* for the extra refcnt from kernel_thread_start() */ | |
1214 | thread_deallocate(current_thread()); | |
1215 | ||
1216 | /* this is the end */ | |
1217 | thread_terminate(current_thread()); | |
1218 | /* NOTREACHED */ | |
1219 | } | |
1220 | ||
2d21ac55 A |
1221 | static kern_return_t |
1222 | dlil_affinity_set(struct thread *tp, u_int32_t tag) | |
1223 | { | |
1224 | thread_affinity_policy_data_t policy; | |
1225 | ||
1226 | bzero(&policy, sizeof (policy)); | |
1227 | policy.affinity_tag = tag; | |
1228 | return (thread_policy_set(tp, THREAD_AFFINITY_POLICY, | |
1229 | (thread_policy_t)&policy, THREAD_AFFINITY_POLICY_COUNT)); | |
1230 | } | |
1231 | ||
91447636 A |
1232 | void |
1233 | dlil_init(void) | |
1234 | { | |
6d2010ae A |
1235 | thread_t thread = THREAD_NULL; |
1236 | ||
1237 | /* | |
1238 | * The following fields must be 64-bit aligned for atomic operations. | |
1239 | */ | |
1240 | IF_DATA_REQUIRE_ALIGNED_64(ifi_ipackets); | |
1241 | IF_DATA_REQUIRE_ALIGNED_64(ifi_ierrors) | |
1242 | IF_DATA_REQUIRE_ALIGNED_64(ifi_opackets); | |
1243 | IF_DATA_REQUIRE_ALIGNED_64(ifi_oerrors); | |
1244 | IF_DATA_REQUIRE_ALIGNED_64(ifi_collisions); | |
1245 | IF_DATA_REQUIRE_ALIGNED_64(ifi_ibytes); | |
1246 | IF_DATA_REQUIRE_ALIGNED_64(ifi_obytes); | |
1247 | IF_DATA_REQUIRE_ALIGNED_64(ifi_imcasts); | |
1248 | IF_DATA_REQUIRE_ALIGNED_64(ifi_omcasts); | |
1249 | IF_DATA_REQUIRE_ALIGNED_64(ifi_iqdrops); | |
1250 | IF_DATA_REQUIRE_ALIGNED_64(ifi_noproto); | |
316670eb | 1251 | IF_DATA_REQUIRE_ALIGNED_64(ifi_alignerrs); |
39236c6e A |
1252 | IF_DATA_REQUIRE_ALIGNED_64(ifi_dt_bytes); |
1253 | IF_DATA_REQUIRE_ALIGNED_64(ifi_fpackets); | |
1254 | IF_DATA_REQUIRE_ALIGNED_64(ifi_fbytes); | |
6d2010ae A |
1255 | |
1256 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_ipackets); | |
1257 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_ierrors) | |
1258 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_opackets); | |
1259 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_oerrors); | |
1260 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_collisions); | |
1261 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_ibytes); | |
1262 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_obytes); | |
1263 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_imcasts); | |
1264 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_omcasts); | |
1265 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_iqdrops); | |
1266 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_noproto); | |
316670eb | 1267 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_alignerrs); |
39236c6e A |
1268 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_dt_bytes); |
1269 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_fpackets); | |
1270 | IFNET_IF_DATA_REQUIRE_ALIGNED_64(ifi_fbytes); | |
6d2010ae A |
1271 | |
1272 | /* | |
1273 | * These IF_HWASSIST_ flags must be equal to their IFNET_* counterparts. | |
1274 | */ | |
1275 | _CASSERT(IF_HWASSIST_CSUM_IP == IFNET_CSUM_IP); | |
1276 | _CASSERT(IF_HWASSIST_CSUM_TCP == IFNET_CSUM_TCP); | |
1277 | _CASSERT(IF_HWASSIST_CSUM_UDP == IFNET_CSUM_UDP); | |
1278 | _CASSERT(IF_HWASSIST_CSUM_IP_FRAGS == IFNET_CSUM_FRAGMENT); | |
1279 | _CASSERT(IF_HWASSIST_CSUM_FRAGMENT == IFNET_IP_FRAGMENT); | |
39236c6e A |
1280 | _CASSERT(IF_HWASSIST_CSUM_TCPIPV6 == IFNET_CSUM_TCPIPV6); |
1281 | _CASSERT(IF_HWASSIST_CSUM_UDPIPV6 == IFNET_CSUM_UDPIPV6); | |
1282 | _CASSERT(IF_HWASSIST_CSUM_FRAGMENT_IPV6 == IFNET_IPV6_FRAGMENT); | |
1283 | _CASSERT(IF_HWASSIST_CSUM_PARTIAL == IFNET_CSUM_PARTIAL); | |
6d2010ae A |
1284 | _CASSERT(IF_HWASSIST_VLAN_TAGGING == IFNET_VLAN_TAGGING); |
1285 | _CASSERT(IF_HWASSIST_VLAN_MTU == IFNET_VLAN_MTU); | |
1286 | _CASSERT(IF_HWASSIST_TSO_V4 == IFNET_TSO_IPV4); | |
1287 | _CASSERT(IF_HWASSIST_TSO_V6 == IFNET_TSO_IPV6); | |
1288 | ||
39236c6e A |
1289 | /* |
1290 | * ... as well as the mbuf checksum flags counterparts. | |
1291 | */ | |
1292 | _CASSERT(CSUM_IP == IF_HWASSIST_CSUM_IP); | |
1293 | _CASSERT(CSUM_TCP == IF_HWASSIST_CSUM_TCP); | |
1294 | _CASSERT(CSUM_UDP == IF_HWASSIST_CSUM_UDP); | |
1295 | _CASSERT(CSUM_IP_FRAGS == IF_HWASSIST_CSUM_IP_FRAGS); | |
1296 | _CASSERT(CSUM_FRAGMENT == IF_HWASSIST_CSUM_FRAGMENT); | |
1297 | _CASSERT(CSUM_TCPIPV6 == IF_HWASSIST_CSUM_TCPIPV6); | |
1298 | _CASSERT(CSUM_UDPIPV6 == IF_HWASSIST_CSUM_UDPIPV6); | |
1299 | _CASSERT(CSUM_FRAGMENT_IPV6 == IF_HWASSIST_CSUM_FRAGMENT_IPV6); | |
1300 | _CASSERT(CSUM_PARTIAL == IF_HWASSIST_CSUM_PARTIAL); | |
1301 | _CASSERT(CSUM_VLAN_TAG_VALID == IF_HWASSIST_VLAN_TAGGING); | |
1302 | ||
6d2010ae A |
1303 | /* |
1304 | * Make sure we have at least IF_LLREACH_MAXLEN in the llreach info. | |
1305 | */ | |
1306 | _CASSERT(IF_LLREACH_MAXLEN <= IF_LLREACHINFO_ADDRLEN); | |
316670eb | 1307 | _CASSERT(IFNET_LLREACHINFO_ADDRLEN == IF_LLREACHINFO_ADDRLEN); |
6d2010ae | 1308 | |
39236c6e A |
1309 | _CASSERT(IFRLOGF_DLIL == IFNET_LOGF_DLIL); |
1310 | _CASSERT(IFRLOGF_FAMILY == IFNET_LOGF_FAMILY); | |
1311 | _CASSERT(IFRLOGF_DRIVER == IFNET_LOGF_DRIVER); | |
1312 | _CASSERT(IFRLOGF_FIRMWARE == IFNET_LOGF_FIRMWARE); | |
1313 | ||
1314 | _CASSERT(IFRLOGCAT_CONNECTIVITY == IFNET_LOGCAT_CONNECTIVITY); | |
1315 | _CASSERT(IFRLOGCAT_QUALITY == IFNET_LOGCAT_QUALITY); | |
1316 | _CASSERT(IFRLOGCAT_PERFORMANCE == IFNET_LOGCAT_PERFORMANCE); | |
1317 | ||
1318 | _CASSERT(IFRTYPE_FAMILY_ANY == IFNET_FAMILY_ANY); | |
1319 | _CASSERT(IFRTYPE_FAMILY_LOOPBACK == IFNET_FAMILY_LOOPBACK); | |
1320 | _CASSERT(IFRTYPE_FAMILY_ETHERNET == IFNET_FAMILY_ETHERNET); | |
1321 | _CASSERT(IFRTYPE_FAMILY_SLIP == IFNET_FAMILY_SLIP); | |
1322 | _CASSERT(IFRTYPE_FAMILY_TUN == IFNET_FAMILY_TUN); | |
1323 | _CASSERT(IFRTYPE_FAMILY_VLAN == IFNET_FAMILY_VLAN); | |
1324 | _CASSERT(IFRTYPE_FAMILY_PPP == IFNET_FAMILY_PPP); | |
1325 | _CASSERT(IFRTYPE_FAMILY_PVC == IFNET_FAMILY_PVC); | |
1326 | _CASSERT(IFRTYPE_FAMILY_DISC == IFNET_FAMILY_DISC); | |
1327 | _CASSERT(IFRTYPE_FAMILY_MDECAP == IFNET_FAMILY_MDECAP); | |
1328 | _CASSERT(IFRTYPE_FAMILY_GIF == IFNET_FAMILY_GIF); | |
1329 | _CASSERT(IFRTYPE_FAMILY_FAITH == IFNET_FAMILY_FAITH); | |
1330 | _CASSERT(IFRTYPE_FAMILY_STF == IFNET_FAMILY_STF); | |
1331 | _CASSERT(IFRTYPE_FAMILY_FIREWIRE == IFNET_FAMILY_FIREWIRE); | |
1332 | _CASSERT(IFRTYPE_FAMILY_BOND == IFNET_FAMILY_BOND); | |
1333 | _CASSERT(IFRTYPE_FAMILY_CELLULAR == IFNET_FAMILY_CELLULAR); | |
1334 | ||
1335 | _CASSERT(IFRTYPE_SUBFAMILY_ANY == IFNET_SUBFAMILY_ANY); | |
1336 | _CASSERT(IFRTYPE_SUBFAMILY_USB == IFNET_SUBFAMILY_USB); | |
1337 | _CASSERT(IFRTYPE_SUBFAMILY_BLUETOOTH == IFNET_SUBFAMILY_BLUETOOTH); | |
1338 | _CASSERT(IFRTYPE_SUBFAMILY_WIFI == IFNET_SUBFAMILY_WIFI); | |
1339 | _CASSERT(IFRTYPE_SUBFAMILY_THUNDERBOLT == IFNET_SUBFAMILY_THUNDERBOLT); | |
fe8ab488 | 1340 | _CASSERT(IFRTYPE_SUBFAMILY_RESERVED == IFNET_SUBFAMILY_RESERVED); |
39236c6e A |
1341 | |
1342 | _CASSERT(DLIL_MODIDLEN == IFNET_MODIDLEN); | |
1343 | _CASSERT(DLIL_MODARGLEN == IFNET_MODARGLEN); | |
1344 | ||
6d2010ae A |
1345 | PE_parse_boot_argn("net_affinity", &net_affinity, |
1346 | sizeof (net_affinity)); | |
b0d623f7 | 1347 | |
316670eb A |
1348 | PE_parse_boot_argn("net_rxpoll", &net_rxpoll, sizeof (net_rxpoll)); |
1349 | ||
d1ecb069 | 1350 | PE_parse_boot_argn("net_rtref", &net_rtref, sizeof (net_rtref)); |
6d2010ae A |
1351 | |
1352 | PE_parse_boot_argn("ifnet_debug", &ifnet_debug, sizeof (ifnet_debug)); | |
1353 | ||
1354 | dlif_size = (ifnet_debug == 0) ? sizeof (struct dlil_ifnet) : | |
1355 | sizeof (struct dlil_ifnet_dbg); | |
1356 | /* Enforce 64-bit alignment for dlil_ifnet structure */ | |
1357 | dlif_bufsize = dlif_size + sizeof (void *) + sizeof (u_int64_t); | |
1358 | dlif_bufsize = P2ROUNDUP(dlif_bufsize, sizeof (u_int64_t)); | |
1359 | dlif_zone = zinit(dlif_bufsize, DLIF_ZONE_MAX * dlif_bufsize, | |
1360 | 0, DLIF_ZONE_NAME); | |
1361 | if (dlif_zone == NULL) { | |
316670eb A |
1362 | panic_plain("%s: failed allocating %s", __func__, |
1363 | DLIF_ZONE_NAME); | |
6d2010ae A |
1364 | /* NOTREACHED */ |
1365 | } | |
1366 | zone_change(dlif_zone, Z_EXPAND, TRUE); | |
1367 | zone_change(dlif_zone, Z_CALLERACCT, FALSE); | |
1368 | ||
1369 | dlif_filt_size = sizeof (struct ifnet_filter); | |
1370 | dlif_filt_zone = zinit(dlif_filt_size, | |
1371 | DLIF_FILT_ZONE_MAX * dlif_filt_size, 0, DLIF_FILT_ZONE_NAME); | |
1372 | if (dlif_filt_zone == NULL) { | |
316670eb | 1373 | panic_plain("%s: failed allocating %s", __func__, |
6d2010ae A |
1374 | DLIF_FILT_ZONE_NAME); |
1375 | /* NOTREACHED */ | |
1376 | } | |
1377 | zone_change(dlif_filt_zone, Z_EXPAND, TRUE); | |
1378 | zone_change(dlif_filt_zone, Z_CALLERACCT, FALSE); | |
1379 | ||
6d2010ae A |
1380 | dlif_phash_size = sizeof (struct proto_hash_entry) * PROTO_HASH_SLOTS; |
1381 | dlif_phash_zone = zinit(dlif_phash_size, | |
1382 | DLIF_PHASH_ZONE_MAX * dlif_phash_size, 0, DLIF_PHASH_ZONE_NAME); | |
1383 | if (dlif_phash_zone == NULL) { | |
316670eb | 1384 | panic_plain("%s: failed allocating %s", __func__, |
6d2010ae A |
1385 | DLIF_PHASH_ZONE_NAME); |
1386 | /* NOTREACHED */ | |
1387 | } | |
1388 | zone_change(dlif_phash_zone, Z_EXPAND, TRUE); | |
1389 | zone_change(dlif_phash_zone, Z_CALLERACCT, FALSE); | |
1390 | ||
1391 | dlif_proto_size = sizeof (struct if_proto); | |
1392 | dlif_proto_zone = zinit(dlif_proto_size, | |
1393 | DLIF_PROTO_ZONE_MAX * dlif_proto_size, 0, DLIF_PROTO_ZONE_NAME); | |
1394 | if (dlif_proto_zone == NULL) { | |
316670eb | 1395 | panic_plain("%s: failed allocating %s", __func__, |
6d2010ae A |
1396 | DLIF_PROTO_ZONE_NAME); |
1397 | /* NOTREACHED */ | |
1398 | } | |
1399 | zone_change(dlif_proto_zone, Z_EXPAND, TRUE); | |
1400 | zone_change(dlif_proto_zone, Z_CALLERACCT, FALSE); | |
1401 | ||
316670eb A |
1402 | dlif_tcpstat_size = sizeof (struct tcpstat_local); |
1403 | /* Enforce 64-bit alignment for tcpstat_local structure */ | |
1404 | dlif_tcpstat_bufsize = | |
1405 | dlif_tcpstat_size + sizeof (void *) + sizeof (u_int64_t); | |
1406 | dlif_tcpstat_bufsize = | |
1407 | P2ROUNDUP(dlif_tcpstat_bufsize, sizeof (u_int64_t)); | |
1408 | dlif_tcpstat_zone = zinit(dlif_tcpstat_bufsize, | |
1409 | DLIF_TCPSTAT_ZONE_MAX * dlif_tcpstat_bufsize, 0, | |
1410 | DLIF_TCPSTAT_ZONE_NAME); | |
1411 | if (dlif_tcpstat_zone == NULL) { | |
1412 | panic_plain("%s: failed allocating %s", __func__, | |
1413 | DLIF_TCPSTAT_ZONE_NAME); | |
1414 | /* NOTREACHED */ | |
1415 | } | |
1416 | zone_change(dlif_tcpstat_zone, Z_EXPAND, TRUE); | |
1417 | zone_change(dlif_tcpstat_zone, Z_CALLERACCT, FALSE); | |
1418 | ||
1419 | dlif_udpstat_size = sizeof (struct udpstat_local); | |
1420 | /* Enforce 64-bit alignment for udpstat_local structure */ | |
1421 | dlif_udpstat_bufsize = | |
1422 | dlif_udpstat_size + sizeof (void *) + sizeof (u_int64_t); | |
1423 | dlif_udpstat_bufsize = | |
1424 | P2ROUNDUP(dlif_udpstat_bufsize, sizeof (u_int64_t)); | |
1425 | dlif_udpstat_zone = zinit(dlif_udpstat_bufsize, | |
1426 | DLIF_TCPSTAT_ZONE_MAX * dlif_udpstat_bufsize, 0, | |
1427 | DLIF_UDPSTAT_ZONE_NAME); | |
1428 | if (dlif_udpstat_zone == NULL) { | |
1429 | panic_plain("%s: failed allocating %s", __func__, | |
1430 | DLIF_UDPSTAT_ZONE_NAME); | |
1431 | /* NOTREACHED */ | |
1432 | } | |
1433 | zone_change(dlif_udpstat_zone, Z_EXPAND, TRUE); | |
1434 | zone_change(dlif_udpstat_zone, Z_CALLERACCT, FALSE); | |
1435 | ||
6d2010ae | 1436 | ifnet_llreach_init(); |
d1ecb069 | 1437 | |
91447636 | 1438 | TAILQ_INIT(&dlil_ifnet_head); |
91447636 | 1439 | TAILQ_INIT(&ifnet_head); |
6d2010ae A |
1440 | TAILQ_INIT(&ifnet_detaching_head); |
1441 | ||
91447636 | 1442 | /* Setup the lock groups we will use */ |
2d21ac55 | 1443 | dlil_grp_attributes = lck_grp_attr_alloc_init(); |
91447636 | 1444 | |
316670eb | 1445 | dlil_lock_group = lck_grp_alloc_init("DLIL internal locks", |
6d2010ae A |
1446 | dlil_grp_attributes); |
1447 | ifnet_lock_group = lck_grp_alloc_init("ifnet locks", | |
1448 | dlil_grp_attributes); | |
1449 | ifnet_head_lock_group = lck_grp_alloc_init("ifnet head lock", | |
1450 | dlil_grp_attributes); | |
316670eb A |
1451 | ifnet_rcv_lock_group = lck_grp_alloc_init("ifnet rcv locks", |
1452 | dlil_grp_attributes); | |
1453 | ifnet_snd_lock_group = lck_grp_alloc_init("ifnet snd locks", | |
6d2010ae A |
1454 | dlil_grp_attributes); |
1455 | ||
91447636 | 1456 | /* Setup the lock attributes we will use */ |
2d21ac55 | 1457 | dlil_lck_attributes = lck_attr_alloc_init(); |
6d2010ae | 1458 | |
91447636 | 1459 | ifnet_lock_attr = lck_attr_alloc_init(); |
6d2010ae A |
1460 | |
1461 | lck_rw_init(&ifnet_head_lock, ifnet_head_lock_group, | |
1462 | dlil_lck_attributes); | |
1463 | lck_mtx_init(&dlil_ifnet_lock, dlil_lock_group, dlil_lck_attributes); | |
1464 | ||
39236c6e A |
1465 | /* Setup interface flow control related items */ |
1466 | lck_mtx_init(&ifnet_fc_lock, dlil_lock_group, dlil_lck_attributes); | |
316670eb | 1467 | |
39236c6e A |
1468 | ifnet_fc_zone_size = sizeof (struct ifnet_fc_entry); |
1469 | ifnet_fc_zone = zinit(ifnet_fc_zone_size, | |
1470 | IFNET_FC_ZONE_MAX * ifnet_fc_zone_size, 0, IFNET_FC_ZONE_NAME); | |
1471 | if (ifnet_fc_zone == NULL) { | |
1472 | panic_plain("%s: failed allocating %s", __func__, | |
1473 | IFNET_FC_ZONE_NAME); | |
1474 | /* NOTREACHED */ | |
1475 | } | |
1476 | zone_change(ifnet_fc_zone, Z_EXPAND, TRUE); | |
1477 | zone_change(ifnet_fc_zone, Z_CALLERACCT, FALSE); | |
6d2010ae | 1478 | |
39236c6e | 1479 | /* Initialize interface address subsystem */ |
6d2010ae | 1480 | ifa_init(); |
39236c6e A |
1481 | |
1482 | #if PF | |
1483 | /* Initialize the packet filter */ | |
1484 | pfinit(); | |
1485 | #endif /* PF */ | |
1486 | ||
1487 | /* Initialize queue algorithms */ | |
1488 | classq_init(); | |
1489 | ||
1490 | /* Initialize packet schedulers */ | |
1491 | pktsched_init(); | |
1492 | ||
1493 | /* Initialize flow advisory subsystem */ | |
1494 | flowadv_init(); | |
1495 | ||
1496 | /* Initialize the pktap virtual interface */ | |
1497 | pktap_init(); | |
1498 | ||
1499 | #if DEBUG | |
1500 | /* Run self-tests */ | |
1501 | dlil_verify_sum16(); | |
1502 | #endif /* DEBUG */ | |
1503 | ||
91447636 | 1504 | /* |
316670eb A |
1505 | * Create and start up the main DLIL input thread and the interface |
1506 | * detacher threads once everything is initialized. | |
91447636 | 1507 | */ |
316670eb | 1508 | dlil_create_input_thread(NULL, dlil_main_input_thread); |
2d21ac55 | 1509 | |
316670eb A |
1510 | if (kernel_thread_start(ifnet_detacher_thread_func, |
1511 | NULL, &thread) != KERN_SUCCESS) { | |
1512 | panic_plain("%s: couldn't create detacher thread", __func__); | |
6d2010ae A |
1513 | /* NOTREACHED */ |
1514 | } | |
b0d623f7 | 1515 | thread_deallocate(thread); |
91447636 | 1516 | } |
1c79356b | 1517 | |
6d2010ae A |
1518 | static void |
1519 | if_flt_monitor_busy(struct ifnet *ifp) | |
1520 | { | |
1521 | lck_mtx_assert(&ifp->if_flt_lock, LCK_MTX_ASSERT_OWNED); | |
1522 | ||
1523 | ++ifp->if_flt_busy; | |
1524 | VERIFY(ifp->if_flt_busy != 0); | |
1525 | } | |
1526 | ||
1527 | static void | |
1528 | if_flt_monitor_unbusy(struct ifnet *ifp) | |
1529 | { | |
1530 | if_flt_monitor_leave(ifp); | |
1531 | } | |
1532 | ||
1533 | static void | |
1534 | if_flt_monitor_enter(struct ifnet *ifp) | |
1535 | { | |
1536 | lck_mtx_assert(&ifp->if_flt_lock, LCK_MTX_ASSERT_OWNED); | |
1537 | ||
1538 | while (ifp->if_flt_busy) { | |
1539 | ++ifp->if_flt_waiters; | |
1540 | (void) msleep(&ifp->if_flt_head, &ifp->if_flt_lock, | |
1541 | (PZERO - 1), "if_flt_monitor", NULL); | |
1542 | } | |
1543 | if_flt_monitor_busy(ifp); | |
1544 | } | |
1545 | ||
1546 | static void | |
1547 | if_flt_monitor_leave(struct ifnet *ifp) | |
1548 | { | |
1549 | lck_mtx_assert(&ifp->if_flt_lock, LCK_MTX_ASSERT_OWNED); | |
1550 | ||
1551 | VERIFY(ifp->if_flt_busy != 0); | |
1552 | --ifp->if_flt_busy; | |
1553 | ||
1554 | if (ifp->if_flt_busy == 0 && ifp->if_flt_waiters > 0) { | |
1555 | ifp->if_flt_waiters = 0; | |
1556 | wakeup(&ifp->if_flt_head); | |
1557 | } | |
1558 | } | |
1559 | ||
2d21ac55 | 1560 | __private_extern__ int |
6d2010ae | 1561 | dlil_attach_filter(struct ifnet *ifp, const struct iff_filter *if_filter, |
39236c6e | 1562 | interface_filter_t *filter_ref, u_int32_t flags) |
6d2010ae A |
1563 | { |
1564 | int retval = 0; | |
1565 | struct ifnet_filter *filter = NULL; | |
9bccf70c | 1566 | |
6d2010ae A |
1567 | ifnet_head_lock_shared(); |
1568 | /* Check that the interface is in the global list */ | |
1569 | if (!ifnet_lookup(ifp)) { | |
1570 | retval = ENXIO; | |
1571 | goto done; | |
1572 | } | |
1573 | ||
1574 | filter = zalloc(dlif_filt_zone); | |
1575 | if (filter == NULL) { | |
1576 | retval = ENOMEM; | |
1577 | goto done; | |
1578 | } | |
1579 | bzero(filter, dlif_filt_size); | |
1580 | ||
1581 | /* refcnt held above during lookup */ | |
39236c6e | 1582 | filter->filt_flags = flags; |
91447636 A |
1583 | filter->filt_ifp = ifp; |
1584 | filter->filt_cookie = if_filter->iff_cookie; | |
1585 | filter->filt_name = if_filter->iff_name; | |
1586 | filter->filt_protocol = if_filter->iff_protocol; | |
1587 | filter->filt_input = if_filter->iff_input; | |
1588 | filter->filt_output = if_filter->iff_output; | |
1589 | filter->filt_event = if_filter->iff_event; | |
1590 | filter->filt_ioctl = if_filter->iff_ioctl; | |
1591 | filter->filt_detached = if_filter->iff_detached; | |
6d2010ae A |
1592 | |
1593 | lck_mtx_lock(&ifp->if_flt_lock); | |
1594 | if_flt_monitor_enter(ifp); | |
1595 | ||
1596 | lck_mtx_assert(&ifp->if_flt_lock, LCK_MTX_ASSERT_OWNED); | |
91447636 | 1597 | TAILQ_INSERT_TAIL(&ifp->if_flt_head, filter, filt_next); |
6d2010ae A |
1598 | |
1599 | if_flt_monitor_leave(ifp); | |
1600 | lck_mtx_unlock(&ifp->if_flt_lock); | |
1601 | ||
91447636 | 1602 | *filter_ref = filter; |
b0d623f7 A |
1603 | |
1604 | /* | |
1605 | * Bump filter count and route_generation ID to let TCP | |
1606 | * know it shouldn't do TSO on this connection | |
1607 | */ | |
39236c6e A |
1608 | if ((filter->filt_flags & DLIL_IFF_TSO) == 0) { |
1609 | OSAddAtomic(1, &dlil_filter_disable_tso_count); | |
b0d623f7 | 1610 | routegenid_update(); |
39236c6e | 1611 | } |
6d2010ae | 1612 | if (dlil_verbose) { |
39236c6e A |
1613 | printf("%s: %s filter attached\n", if_name(ifp), |
1614 | if_filter->iff_name); | |
6d2010ae A |
1615 | } |
1616 | done: | |
1617 | ifnet_head_done(); | |
1618 | if (retval != 0 && ifp != NULL) { | |
39236c6e A |
1619 | DLIL_PRINTF("%s: failed to attach %s (err=%d)\n", |
1620 | if_name(ifp), if_filter->iff_name, retval); | |
6d2010ae A |
1621 | } |
1622 | if (retval != 0 && filter != NULL) | |
1623 | zfree(dlif_filt_zone, filter); | |
1624 | ||
1625 | return (retval); | |
1c79356b A |
1626 | } |
1627 | ||
91447636 | 1628 | static int |
6d2010ae | 1629 | dlil_detach_filter_internal(interface_filter_t filter, int detached) |
1c79356b | 1630 | { |
91447636 | 1631 | int retval = 0; |
6d2010ae | 1632 | |
3a60a9f5 | 1633 | if (detached == 0) { |
6d2010ae A |
1634 | ifnet_t ifp = NULL; |
1635 | ||
3a60a9f5 A |
1636 | ifnet_head_lock_shared(); |
1637 | TAILQ_FOREACH(ifp, &ifnet_head, if_link) { | |
6d2010ae A |
1638 | interface_filter_t entry = NULL; |
1639 | ||
1640 | lck_mtx_lock(&ifp->if_flt_lock); | |
3a60a9f5 | 1641 | TAILQ_FOREACH(entry, &ifp->if_flt_head, filt_next) { |
6d2010ae A |
1642 | if (entry != filter || entry->filt_skip) |
1643 | continue; | |
1644 | /* | |
1645 | * We've found a match; since it's possible | |
1646 | * that the thread gets blocked in the monitor, | |
1647 | * we do the lock dance. Interface should | |
1648 | * not be detached since we still have a use | |
1649 | * count held during filter attach. | |
1650 | */ | |
1651 | entry->filt_skip = 1; /* skip input/output */ | |
1652 | lck_mtx_unlock(&ifp->if_flt_lock); | |
1653 | ifnet_head_done(); | |
1654 | ||
1655 | lck_mtx_lock(&ifp->if_flt_lock); | |
1656 | if_flt_monitor_enter(ifp); | |
1657 | lck_mtx_assert(&ifp->if_flt_lock, | |
1658 | LCK_MTX_ASSERT_OWNED); | |
1659 | ||
1660 | /* Remove the filter from the list */ | |
1661 | TAILQ_REMOVE(&ifp->if_flt_head, filter, | |
1662 | filt_next); | |
1663 | ||
1664 | if_flt_monitor_leave(ifp); | |
1665 | lck_mtx_unlock(&ifp->if_flt_lock); | |
1666 | if (dlil_verbose) { | |
39236c6e A |
1667 | printf("%s: %s filter detached\n", |
1668 | if_name(ifp), filter->filt_name); | |
6d2010ae A |
1669 | } |
1670 | goto destroy; | |
3a60a9f5 | 1671 | } |
6d2010ae | 1672 | lck_mtx_unlock(&ifp->if_flt_lock); |
3a60a9f5 A |
1673 | } |
1674 | ifnet_head_done(); | |
6d2010ae A |
1675 | |
1676 | /* filter parameter is not a valid filter ref */ | |
1677 | retval = EINVAL; | |
1678 | goto done; | |
3a60a9f5 | 1679 | } |
6d2010ae A |
1680 | |
1681 | if (dlil_verbose) | |
1682 | printf("%s filter detached\n", filter->filt_name); | |
1683 | ||
1684 | destroy: | |
1685 | ||
1686 | /* Call the detached function if there is one */ | |
91447636 A |
1687 | if (filter->filt_detached) |
1688 | filter->filt_detached(filter->filt_cookie, filter->filt_ifp); | |
9bccf70c | 1689 | |
3a60a9f5 | 1690 | /* Free the filter */ |
6d2010ae A |
1691 | zfree(dlif_filt_zone, filter); |
1692 | ||
b0d623f7 A |
1693 | /* |
1694 | * Decrease filter count and route_generation ID to let TCP | |
1695 | * know it should reevalute doing TSO or not | |
1696 | */ | |
39236c6e A |
1697 | if ((filter->filt_flags & DLIL_IFF_TSO) == 0) { |
1698 | OSAddAtomic(-1, &dlil_filter_disable_tso_count); | |
b0d623f7 | 1699 | routegenid_update(); |
39236c6e | 1700 | } |
6d2010ae A |
1701 | done: |
1702 | if (retval != 0) { | |
1703 | DLIL_PRINTF("failed to detach %s filter (err=%d)\n", | |
1704 | filter->filt_name, retval); | |
1705 | } | |
1706 | return (retval); | |
1c79356b A |
1707 | } |
1708 | ||
2d21ac55 | 1709 | __private_extern__ void |
91447636 A |
1710 | dlil_detach_filter(interface_filter_t filter) |
1711 | { | |
3a60a9f5 A |
1712 | if (filter == NULL) |
1713 | return; | |
91447636 A |
1714 | dlil_detach_filter_internal(filter, 0); |
1715 | } | |
1c79356b | 1716 | |
316670eb A |
1717 | /* |
1718 | * Main input thread: | |
1719 | * | |
1720 | * a) handles all inbound packets for lo0 | |
1721 | * b) handles all inbound packets for interfaces with no dedicated | |
1722 | * input thread (e.g. anything but Ethernet/PDP or those that support | |
1723 | * opportunistic polling.) | |
1724 | * c) protocol registrations | |
1725 | * d) packet injections | |
1726 | */ | |
91447636 | 1727 | static void |
316670eb | 1728 | dlil_main_input_thread_func(void *v, wait_result_t w) |
91447636 | 1729 | { |
316670eb A |
1730 | #pragma unused(w) |
1731 | struct dlil_main_threading_info *inpm = v; | |
1732 | struct dlil_threading_info *inp = v; | |
1733 | ||
1734 | VERIFY(inp == dlil_main_input_thread); | |
1735 | VERIFY(inp->ifp == NULL); | |
1736 | VERIFY(inp->mode == IFNET_MODEL_INPUT_POLL_OFF); | |
1737 | ||
91447636 | 1738 | while (1) { |
2d21ac55 | 1739 | struct mbuf *m = NULL, *m_loop = NULL; |
316670eb A |
1740 | u_int32_t m_cnt, m_cnt_loop; |
1741 | boolean_t proto_req; | |
6d2010ae | 1742 | |
316670eb | 1743 | lck_mtx_lock_spin(&inp->input_lck); |
6d2010ae | 1744 | |
2d21ac55 | 1745 | /* Wait until there is work to be done */ |
316670eb A |
1746 | while (!(inp->input_waiting & ~DLIL_INPUT_RUNNING)) { |
1747 | inp->input_waiting &= ~DLIL_INPUT_RUNNING; | |
1748 | (void) msleep(&inp->input_waiting, &inp->input_lck, | |
1749 | (PZERO - 1) | PSPIN, inp->input_name, NULL); | |
2d21ac55 A |
1750 | } |
1751 | ||
316670eb A |
1752 | inp->input_waiting |= DLIL_INPUT_RUNNING; |
1753 | inp->input_waiting &= ~DLIL_INPUT_WAITING; | |
2d21ac55 | 1754 | |
316670eb A |
1755 | /* Main input thread cannot be terminated */ |
1756 | VERIFY(!(inp->input_waiting & DLIL_INPUT_TERMINATE)); | |
2d21ac55 | 1757 | |
316670eb A |
1758 | proto_req = (inp->input_waiting & |
1759 | (DLIL_PROTO_WAITING | DLIL_PROTO_REGISTER)); | |
6d2010ae | 1760 | |
316670eb A |
1761 | /* Packets for non-dedicated interfaces other than lo0 */ |
1762 | m_cnt = qlen(&inp->rcvq_pkts); | |
1763 | m = _getq_all(&inp->rcvq_pkts); | |
6d2010ae | 1764 | |
39236c6e | 1765 | /* Packets exclusive to lo0 */ |
316670eb A |
1766 | m_cnt_loop = qlen(&inpm->lo_rcvq_pkts); |
1767 | m_loop = _getq_all(&inpm->lo_rcvq_pkts); | |
6d2010ae | 1768 | |
316670eb | 1769 | inp->wtot = 0; |
6d2010ae | 1770 | |
316670eb | 1771 | lck_mtx_unlock(&inp->input_lck); |
6d2010ae | 1772 | |
316670eb A |
1773 | /* |
1774 | * NOTE warning %%% attention !!!! | |
1775 | * We should think about putting some thread starvation | |
1776 | * safeguards if we deal with long chains of packets. | |
1777 | */ | |
1778 | if (m_loop != NULL) | |
1779 | dlil_input_packet_list_extended(lo_ifp, m_loop, | |
1780 | m_cnt_loop, inp->mode); | |
6d2010ae | 1781 | |
316670eb A |
1782 | if (m != NULL) |
1783 | dlil_input_packet_list_extended(NULL, m, | |
1784 | m_cnt, inp->mode); | |
1785 | ||
1786 | if (proto_req) | |
1787 | proto_input_run(); | |
1788 | } | |
1789 | ||
1790 | /* NOTREACHED */ | |
1791 | VERIFY(0); /* we should never get here */ | |
1792 | } | |
1793 | ||
1794 | /* | |
1795 | * Input thread for interfaces with legacy input model. | |
1796 | */ | |
1797 | static void | |
1798 | dlil_input_thread_func(void *v, wait_result_t w) | |
1799 | { | |
1800 | #pragma unused(w) | |
1801 | struct dlil_threading_info *inp = v; | |
1802 | struct ifnet *ifp = inp->ifp; | |
1803 | ||
1804 | VERIFY(inp != dlil_main_input_thread); | |
1805 | VERIFY(ifp != NULL); | |
1806 | VERIFY(!(ifp->if_eflags & IFEF_RXPOLL) || !net_rxpoll); | |
1807 | VERIFY(inp->mode == IFNET_MODEL_INPUT_POLL_OFF); | |
2d21ac55 | 1808 | |
316670eb A |
1809 | while (1) { |
1810 | struct mbuf *m = NULL; | |
1811 | u_int32_t m_cnt; | |
1812 | ||
1813 | lck_mtx_lock_spin(&inp->input_lck); | |
2d21ac55 | 1814 | |
316670eb A |
1815 | /* Wait until there is work to be done */ |
1816 | while (!(inp->input_waiting & ~DLIL_INPUT_RUNNING)) { | |
1817 | inp->input_waiting &= ~DLIL_INPUT_RUNNING; | |
1818 | (void) msleep(&inp->input_waiting, &inp->input_lck, | |
1819 | (PZERO - 1) | PSPIN, inp->input_name, NULL); | |
2d21ac55 A |
1820 | } |
1821 | ||
316670eb A |
1822 | inp->input_waiting |= DLIL_INPUT_RUNNING; |
1823 | inp->input_waiting &= ~DLIL_INPUT_WAITING; | |
6d2010ae | 1824 | |
316670eb A |
1825 | /* |
1826 | * Protocol registration and injection must always use | |
1827 | * the main input thread; in theory the latter can utilize | |
1828 | * the corresponding input thread where the packet arrived | |
1829 | * on, but that requires our knowing the interface in advance | |
1830 | * (and the benefits might not worth the trouble.) | |
1831 | */ | |
1832 | VERIFY(!(inp->input_waiting & | |
1833 | (DLIL_PROTO_WAITING|DLIL_PROTO_REGISTER))); | |
6d2010ae | 1834 | |
316670eb A |
1835 | /* Packets for this interface */ |
1836 | m_cnt = qlen(&inp->rcvq_pkts); | |
1837 | m = _getq_all(&inp->rcvq_pkts); | |
6d2010ae | 1838 | |
316670eb A |
1839 | if (inp->input_waiting & DLIL_INPUT_TERMINATE) { |
1840 | lck_mtx_unlock(&inp->input_lck); | |
1841 | ||
1842 | /* Free up pending packets */ | |
1843 | if (m != NULL) | |
1844 | mbuf_freem_list(m); | |
1845 | ||
1846 | dlil_terminate_input_thread(inp); | |
1847 | /* NOTREACHED */ | |
1848 | return; | |
2d21ac55 A |
1849 | } |
1850 | ||
316670eb A |
1851 | inp->wtot = 0; |
1852 | ||
1853 | dlil_input_stats_sync(ifp, inp); | |
1854 | ||
1855 | lck_mtx_unlock(&inp->input_lck); | |
2d21ac55 | 1856 | |
91447636 A |
1857 | /* |
1858 | * NOTE warning %%% attention !!!! | |
6d2010ae A |
1859 | * We should think about putting some thread starvation |
1860 | * safeguards if we deal with long chains of packets. | |
91447636 | 1861 | */ |
6d2010ae | 1862 | if (m != NULL) |
316670eb A |
1863 | dlil_input_packet_list_extended(NULL, m, |
1864 | m_cnt, inp->mode); | |
2d21ac55 | 1865 | } |
316670eb A |
1866 | |
1867 | /* NOTREACHED */ | |
1868 | VERIFY(0); /* we should never get here */ | |
2d21ac55 A |
1869 | } |
1870 | ||
316670eb A |
1871 | /* |
1872 | * Input thread for interfaces with opportunistic polling input model. | |
1873 | */ | |
1874 | static void | |
1875 | dlil_rxpoll_input_thread_func(void *v, wait_result_t w) | |
2d21ac55 | 1876 | { |
316670eb A |
1877 | #pragma unused(w) |
1878 | struct dlil_threading_info *inp = v; | |
1879 | struct ifnet *ifp = inp->ifp; | |
1880 | struct timespec ts; | |
2d21ac55 | 1881 | |
316670eb A |
1882 | VERIFY(inp != dlil_main_input_thread); |
1883 | VERIFY(ifp != NULL && (ifp->if_eflags & IFEF_RXPOLL)); | |
2d21ac55 | 1884 | |
2d21ac55 | 1885 | while (1) { |
316670eb A |
1886 | struct mbuf *m = NULL; |
1887 | u_int32_t m_cnt, m_size, poll_req = 0; | |
1888 | ifnet_model_t mode; | |
1889 | struct timespec now, delta; | |
39236c6e | 1890 | u_int64_t ival; |
6d2010ae | 1891 | |
316670eb | 1892 | lck_mtx_lock_spin(&inp->input_lck); |
6d2010ae | 1893 | |
39236c6e A |
1894 | if ((ival = inp->rxpoll_ival) < IF_RXPOLL_INTERVALTIME_MIN) |
1895 | ival = IF_RXPOLL_INTERVALTIME_MIN; | |
1896 | ||
316670eb A |
1897 | /* Link parameters changed? */ |
1898 | if (ifp->if_poll_update != 0) { | |
1899 | ifp->if_poll_update = 0; | |
39236c6e | 1900 | (void) dlil_rxpoll_set_params(ifp, NULL, TRUE); |
91447636 | 1901 | } |
1c79356b | 1902 | |
316670eb A |
1903 | /* Current operating mode */ |
1904 | mode = inp->mode; | |
1c79356b | 1905 | |
316670eb | 1906 | /* Wait until there is work to be done */ |
39236c6e | 1907 | while (!(inp->input_waiting & ~DLIL_INPUT_RUNNING)) { |
316670eb A |
1908 | inp->input_waiting &= ~DLIL_INPUT_RUNNING; |
1909 | (void) msleep(&inp->input_waiting, &inp->input_lck, | |
1910 | (PZERO - 1) | PSPIN, inp->input_name, NULL); | |
1911 | } | |
2d21ac55 | 1912 | |
316670eb A |
1913 | inp->input_waiting |= DLIL_INPUT_RUNNING; |
1914 | inp->input_waiting &= ~DLIL_INPUT_WAITING; | |
2d21ac55 A |
1915 | |
1916 | /* | |
316670eb A |
1917 | * Protocol registration and injection must always use |
1918 | * the main input thread; in theory the latter can utilize | |
1919 | * the corresponding input thread where the packet arrived | |
1920 | * on, but that requires our knowing the interface in advance | |
1921 | * (and the benefits might not worth the trouble.) | |
2d21ac55 | 1922 | */ |
316670eb A |
1923 | VERIFY(!(inp->input_waiting & |
1924 | (DLIL_PROTO_WAITING|DLIL_PROTO_REGISTER))); | |
2d21ac55 | 1925 | |
316670eb A |
1926 | if (inp->input_waiting & DLIL_INPUT_TERMINATE) { |
1927 | /* Free up pending packets */ | |
1928 | _flushq(&inp->rcvq_pkts); | |
1929 | lck_mtx_unlock(&inp->input_lck); | |
2d21ac55 | 1930 | |
316670eb A |
1931 | dlil_terminate_input_thread(inp); |
1932 | /* NOTREACHED */ | |
1933 | return; | |
2d21ac55 | 1934 | } |
2d21ac55 | 1935 | |
316670eb A |
1936 | /* Total count of all packets */ |
1937 | m_cnt = qlen(&inp->rcvq_pkts); | |
1938 | ||
1939 | /* Total bytes of all packets */ | |
1940 | m_size = qsize(&inp->rcvq_pkts); | |
1941 | ||
1942 | /* Packets for this interface */ | |
1943 | m = _getq_all(&inp->rcvq_pkts); | |
1944 | VERIFY(m != NULL || m_cnt == 0); | |
1945 | ||
1946 | nanouptime(&now); | |
1947 | if (!net_timerisset(&inp->sample_lasttime)) | |
1948 | *(&inp->sample_lasttime) = *(&now); | |
1949 | ||
1950 | net_timersub(&now, &inp->sample_lasttime, &delta); | |
1951 | if (if_rxpoll && net_timerisset(&inp->sample_holdtime)) { | |
1952 | u_int32_t ptot, btot; | |
1953 | ||
1954 | /* Accumulate statistics for current sampling */ | |
1955 | PKTCNTR_ADD(&inp->sstats, m_cnt, m_size); | |
1956 | ||
1957 | if (net_timercmp(&delta, &inp->sample_holdtime, <)) | |
1958 | goto skip; | |
1959 | ||
1960 | *(&inp->sample_lasttime) = *(&now); | |
1961 | ||
1962 | /* Calculate min/max of inbound bytes */ | |
1963 | btot = (u_int32_t)inp->sstats.bytes; | |
1964 | if (inp->rxpoll_bmin == 0 || inp->rxpoll_bmin > btot) | |
1965 | inp->rxpoll_bmin = btot; | |
1966 | if (btot > inp->rxpoll_bmax) | |
1967 | inp->rxpoll_bmax = btot; | |
1968 | ||
1969 | /* Calculate EWMA of inbound bytes */ | |
1970 | DLIL_EWMA(inp->rxpoll_bavg, btot, if_rxpoll_decay); | |
1971 | ||
1972 | /* Calculate min/max of inbound packets */ | |
1973 | ptot = (u_int32_t)inp->sstats.packets; | |
1974 | if (inp->rxpoll_pmin == 0 || inp->rxpoll_pmin > ptot) | |
1975 | inp->rxpoll_pmin = ptot; | |
1976 | if (ptot > inp->rxpoll_pmax) | |
1977 | inp->rxpoll_pmax = ptot; | |
1978 | ||
1979 | /* Calculate EWMA of inbound packets */ | |
1980 | DLIL_EWMA(inp->rxpoll_pavg, ptot, if_rxpoll_decay); | |
1981 | ||
1982 | /* Reset sampling statistics */ | |
1983 | PKTCNTR_CLEAR(&inp->sstats); | |
1984 | ||
1985 | /* Calculate EWMA of wakeup requests */ | |
1986 | DLIL_EWMA(inp->rxpoll_wavg, inp->wtot, if_rxpoll_decay); | |
1987 | inp->wtot = 0; | |
1988 | ||
1989 | if (dlil_verbose) { | |
1990 | if (!net_timerisset(&inp->dbg_lasttime)) | |
1991 | *(&inp->dbg_lasttime) = *(&now); | |
1992 | net_timersub(&now, &inp->dbg_lasttime, &delta); | |
1993 | if (net_timercmp(&delta, &dlil_dbgrate, >=)) { | |
1994 | *(&inp->dbg_lasttime) = *(&now); | |
39236c6e | 1995 | printf("%s: [%s] pkts avg %d max %d " |
316670eb A |
1996 | "limits [%d/%d], wreq avg %d " |
1997 | "limits [%d/%d], bytes avg %d " | |
39236c6e A |
1998 | "limits [%d/%d]\n", if_name(ifp), |
1999 | (inp->mode == | |
316670eb A |
2000 | IFNET_MODEL_INPUT_POLL_ON) ? |
2001 | "ON" : "OFF", inp->rxpoll_pavg, | |
2002 | inp->rxpoll_pmax, | |
2003 | inp->rxpoll_plowat, | |
2004 | inp->rxpoll_phiwat, | |
2005 | inp->rxpoll_wavg, | |
2006 | inp->rxpoll_wlowat, | |
2007 | inp->rxpoll_whiwat, | |
2008 | inp->rxpoll_bavg, | |
2009 | inp->rxpoll_blowat, | |
2010 | inp->rxpoll_bhiwat); | |
2011 | } | |
2012 | } | |
2d21ac55 | 2013 | |
316670eb A |
2014 | /* Perform mode transition, if necessary */ |
2015 | if (!net_timerisset(&inp->mode_lasttime)) | |
2016 | *(&inp->mode_lasttime) = *(&now); | |
2017 | ||
2018 | net_timersub(&now, &inp->mode_lasttime, &delta); | |
2019 | if (net_timercmp(&delta, &inp->mode_holdtime, <)) | |
2020 | goto skip; | |
2021 | ||
2022 | if (inp->rxpoll_pavg <= inp->rxpoll_plowat && | |
2023 | inp->rxpoll_bavg <= inp->rxpoll_blowat && | |
316670eb A |
2024 | inp->mode != IFNET_MODEL_INPUT_POLL_OFF) { |
2025 | mode = IFNET_MODEL_INPUT_POLL_OFF; | |
2026 | } else if (inp->rxpoll_pavg >= inp->rxpoll_phiwat && | |
2027 | (inp->rxpoll_bavg >= inp->rxpoll_bhiwat || | |
2028 | inp->rxpoll_wavg >= inp->rxpoll_whiwat) && | |
2029 | inp->mode != IFNET_MODEL_INPUT_POLL_ON) { | |
2030 | mode = IFNET_MODEL_INPUT_POLL_ON; | |
2031 | } | |
6d2010ae | 2032 | |
316670eb A |
2033 | if (mode != inp->mode) { |
2034 | inp->mode = mode; | |
2035 | *(&inp->mode_lasttime) = *(&now); | |
2036 | poll_req++; | |
2037 | } | |
2038 | } | |
2039 | skip: | |
2040 | dlil_input_stats_sync(ifp, inp); | |
6d2010ae | 2041 | |
316670eb | 2042 | lck_mtx_unlock(&inp->input_lck); |
6d2010ae | 2043 | |
316670eb A |
2044 | /* |
2045 | * If there's a mode change and interface is still attached, | |
2046 | * perform a downcall to the driver for the new mode. Also | |
2047 | * hold an IO refcnt on the interface to prevent it from | |
2048 | * being detached (will be release below.) | |
2049 | */ | |
2050 | if (poll_req != 0 && ifnet_is_attached(ifp, 1)) { | |
2051 | struct ifnet_model_params p = { mode, { 0 } }; | |
2052 | errno_t err; | |
2053 | ||
2054 | if (dlil_verbose) { | |
39236c6e | 2055 | printf("%s: polling is now %s, " |
316670eb A |
2056 | "pkts avg %d max %d limits [%d/%d], " |
2057 | "wreq avg %d limits [%d/%d], " | |
2058 | "bytes avg %d limits [%d/%d]\n", | |
39236c6e | 2059 | if_name(ifp), |
316670eb A |
2060 | (mode == IFNET_MODEL_INPUT_POLL_ON) ? |
2061 | "ON" : "OFF", inp->rxpoll_pavg, | |
2062 | inp->rxpoll_pmax, inp->rxpoll_plowat, | |
2063 | inp->rxpoll_phiwat, inp->rxpoll_wavg, | |
2064 | inp->rxpoll_wlowat, inp->rxpoll_whiwat, | |
2065 | inp->rxpoll_bavg, inp->rxpoll_blowat, | |
2066 | inp->rxpoll_bhiwat); | |
2067 | } | |
2d21ac55 | 2068 | |
316670eb A |
2069 | if ((err = ((*ifp->if_input_ctl)(ifp, |
2070 | IFNET_CTL_SET_INPUT_MODEL, sizeof (p), &p))) != 0) { | |
39236c6e A |
2071 | printf("%s: error setting polling mode " |
2072 | "to %s (%d)\n", if_name(ifp), | |
316670eb A |
2073 | (mode == IFNET_MODEL_INPUT_POLL_ON) ? |
2074 | "ON" : "OFF", err); | |
2075 | } | |
1c79356b | 2076 | |
316670eb A |
2077 | switch (mode) { |
2078 | case IFNET_MODEL_INPUT_POLL_OFF: | |
2079 | ifnet_set_poll_cycle(ifp, NULL); | |
2080 | inp->rxpoll_offreq++; | |
2081 | if (err != 0) | |
2082 | inp->rxpoll_offerr++; | |
2083 | break; | |
2d21ac55 | 2084 | |
316670eb | 2085 | case IFNET_MODEL_INPUT_POLL_ON: |
39236c6e | 2086 | net_nsectimer(&ival, &ts); |
316670eb A |
2087 | ifnet_set_poll_cycle(ifp, &ts); |
2088 | ifnet_poll(ifp); | |
2089 | inp->rxpoll_onreq++; | |
2090 | if (err != 0) | |
2091 | inp->rxpoll_onerr++; | |
2092 | break; | |
2093 | ||
2094 | default: | |
2095 | VERIFY(0); | |
2096 | /* NOTREACHED */ | |
2097 | } | |
2098 | ||
2099 | /* Release the IO refcnt */ | |
2100 | ifnet_decr_iorefcnt(ifp); | |
2101 | } | |
2102 | ||
2103 | /* | |
2104 | * NOTE warning %%% attention !!!! | |
2105 | * We should think about putting some thread starvation | |
2106 | * safeguards if we deal with long chains of packets. | |
2107 | */ | |
2108 | if (m != NULL) | |
2109 | dlil_input_packet_list_extended(NULL, m, m_cnt, mode); | |
2110 | } | |
2111 | ||
2112 | /* NOTREACHED */ | |
2113 | VERIFY(0); /* we should never get here */ | |
2114 | } | |
2115 | ||
39236c6e A |
2116 | /* |
2117 | * Must be called on an attached ifnet (caller is expected to check.) | |
2118 | * Caller may pass NULL for poll parameters to indicate "auto-tuning." | |
2119 | */ | |
2120 | errno_t | |
2121 | dlil_rxpoll_set_params(struct ifnet *ifp, struct ifnet_poll_params *p, | |
2122 | boolean_t locked) | |
316670eb | 2123 | { |
39236c6e | 2124 | struct dlil_threading_info *inp; |
316670eb A |
2125 | u_int64_t sample_holdtime, inbw; |
2126 | ||
39236c6e A |
2127 | VERIFY(ifp != NULL); |
2128 | if (!(ifp->if_eflags & IFEF_RXPOLL) || (inp = ifp->if_inp) == NULL) | |
2129 | return (ENXIO); | |
2130 | ||
2131 | if (p != NULL) { | |
2132 | if ((p->packets_lowat == 0 && p->packets_hiwat != 0) || | |
2133 | (p->packets_lowat != 0 && p->packets_hiwat == 0)) | |
2134 | return (EINVAL); | |
2135 | if (p->packets_lowat != 0 && /* hiwat must be non-zero */ | |
2136 | p->packets_lowat >= p->packets_hiwat) | |
2137 | return (EINVAL); | |
2138 | if ((p->bytes_lowat == 0 && p->bytes_hiwat != 0) || | |
2139 | (p->bytes_lowat != 0 && p->bytes_hiwat == 0)) | |
2140 | return (EINVAL); | |
2141 | if (p->bytes_lowat != 0 && /* hiwat must be non-zero */ | |
2142 | p->bytes_lowat >= p->bytes_hiwat) | |
2143 | return (EINVAL); | |
2144 | if (p->interval_time != 0 && | |
2145 | p->interval_time < IF_RXPOLL_INTERVALTIME_MIN) | |
2146 | p->interval_time = IF_RXPOLL_INTERVALTIME_MIN; | |
2147 | } | |
2148 | ||
2149 | if (!locked) | |
2150 | lck_mtx_lock(&inp->input_lck); | |
2151 | ||
2152 | lck_mtx_assert(&inp->input_lck, LCK_MTX_ASSERT_OWNED); | |
2153 | ||
2154 | /* | |
2155 | * Normally, we'd reset the parameters to the auto-tuned values | |
2156 | * if the the input thread detects a change in link rate. If the | |
2157 | * driver provides its own parameters right after a link rate | |
2158 | * changes, but before the input thread gets to run, we want to | |
2159 | * make sure to keep the driver's values. Clearing if_poll_update | |
2160 | * will achieve that. | |
2161 | */ | |
2162 | if (p != NULL && !locked && ifp->if_poll_update != 0) | |
2163 | ifp->if_poll_update = 0; | |
316670eb | 2164 | |
39236c6e | 2165 | if ((inbw = ifnet_input_linkrate(ifp)) == 0 && p == NULL) { |
316670eb A |
2166 | sample_holdtime = 0; /* polling is disabled */ |
2167 | inp->rxpoll_wlowat = inp->rxpoll_plowat = | |
2168 | inp->rxpoll_blowat = 0; | |
2169 | inp->rxpoll_whiwat = inp->rxpoll_phiwat = | |
2170 | inp->rxpoll_bhiwat = (u_int32_t)-1; | |
39236c6e A |
2171 | inp->rxpoll_plim = 0; |
2172 | inp->rxpoll_ival = IF_RXPOLL_INTERVALTIME_MIN; | |
316670eb | 2173 | } else { |
39236c6e A |
2174 | u_int32_t plowat, phiwat, blowat, bhiwat, plim; |
2175 | u_int64_t ival; | |
316670eb A |
2176 | unsigned int n, i; |
2177 | ||
39236c6e | 2178 | for (n = 0, i = 0; rxpoll_tbl[i].speed != 0; i++) { |
316670eb A |
2179 | if (inbw < rxpoll_tbl[i].speed) |
2180 | break; | |
2181 | n = i; | |
2182 | } | |
39236c6e A |
2183 | /* auto-tune if caller didn't specify a value */ |
2184 | plowat = ((p == NULL || p->packets_lowat == 0) ? | |
2185 | rxpoll_tbl[n].plowat : p->packets_lowat); | |
2186 | phiwat = ((p == NULL || p->packets_hiwat == 0) ? | |
2187 | rxpoll_tbl[n].phiwat : p->packets_hiwat); | |
2188 | blowat = ((p == NULL || p->bytes_lowat == 0) ? | |
2189 | rxpoll_tbl[n].blowat : p->bytes_lowat); | |
2190 | bhiwat = ((p == NULL || p->bytes_hiwat == 0) ? | |
2191 | rxpoll_tbl[n].bhiwat : p->bytes_hiwat); | |
2192 | plim = ((p == NULL || p->packets_limit == 0) ? | |
2193 | if_rxpoll_max : p->packets_limit); | |
2194 | ival = ((p == NULL || p->interval_time == 0) ? | |
2195 | if_rxpoll_interval_time : p->interval_time); | |
2196 | ||
2197 | VERIFY(plowat != 0 && phiwat != 0); | |
2198 | VERIFY(blowat != 0 && bhiwat != 0); | |
2199 | VERIFY(ival >= IF_RXPOLL_INTERVALTIME_MIN); | |
2200 | ||
316670eb A |
2201 | sample_holdtime = if_rxpoll_sample_holdtime; |
2202 | inp->rxpoll_wlowat = if_rxpoll_wlowat; | |
2203 | inp->rxpoll_whiwat = if_rxpoll_whiwat; | |
39236c6e A |
2204 | inp->rxpoll_plowat = plowat; |
2205 | inp->rxpoll_phiwat = phiwat; | |
2206 | inp->rxpoll_blowat = blowat; | |
2207 | inp->rxpoll_bhiwat = bhiwat; | |
2208 | inp->rxpoll_plim = plim; | |
2209 | inp->rxpoll_ival = ival; | |
316670eb A |
2210 | } |
2211 | ||
2212 | net_nsectimer(&if_rxpoll_mode_holdtime, &inp->mode_holdtime); | |
2213 | net_nsectimer(&sample_holdtime, &inp->sample_holdtime); | |
2214 | ||
2215 | if (dlil_verbose) { | |
39236c6e A |
2216 | printf("%s: speed %llu bps, sample per %llu nsec, " |
2217 | "poll interval %llu nsec, pkts per poll %u, " | |
2218 | "pkt limits [%u/%u], wreq limits [%u/%u], " | |
2219 | "bytes limits [%u/%u]\n", if_name(ifp), | |
2220 | inbw, sample_holdtime, inp->rxpoll_ival, inp->rxpoll_plim, | |
2221 | inp->rxpoll_plowat, inp->rxpoll_phiwat, inp->rxpoll_wlowat, | |
2222 | inp->rxpoll_whiwat, inp->rxpoll_blowat, inp->rxpoll_bhiwat); | |
316670eb | 2223 | } |
39236c6e A |
2224 | |
2225 | if (!locked) | |
2226 | lck_mtx_unlock(&inp->input_lck); | |
2227 | ||
2228 | return (0); | |
2229 | } | |
2230 | ||
2231 | /* | |
2232 | * Must be called on an attached ifnet (caller is expected to check.) | |
2233 | */ | |
2234 | errno_t | |
2235 | dlil_rxpoll_get_params(struct ifnet *ifp, struct ifnet_poll_params *p) | |
2236 | { | |
2237 | struct dlil_threading_info *inp; | |
2238 | ||
2239 | VERIFY(ifp != NULL && p != NULL); | |
2240 | if (!(ifp->if_eflags & IFEF_RXPOLL) || (inp = ifp->if_inp) == NULL) | |
2241 | return (ENXIO); | |
2242 | ||
2243 | bzero(p, sizeof (*p)); | |
2244 | ||
2245 | lck_mtx_lock(&inp->input_lck); | |
2246 | p->packets_limit = inp->rxpoll_plim; | |
2247 | p->packets_lowat = inp->rxpoll_plowat; | |
2248 | p->packets_hiwat = inp->rxpoll_phiwat; | |
2249 | p->bytes_lowat = inp->rxpoll_blowat; | |
2250 | p->bytes_hiwat = inp->rxpoll_bhiwat; | |
2251 | p->interval_time = inp->rxpoll_ival; | |
2252 | lck_mtx_unlock(&inp->input_lck); | |
2253 | ||
2254 | return (0); | |
316670eb A |
2255 | } |
2256 | ||
2257 | errno_t | |
2258 | ifnet_input(struct ifnet *ifp, struct mbuf *m_head, | |
2259 | const struct ifnet_stat_increment_param *s) | |
2260 | { | |
2261 | return (ifnet_input_common(ifp, m_head, NULL, s, FALSE, FALSE)); | |
2262 | } | |
2263 | ||
2264 | errno_t | |
2265 | ifnet_input_extended(struct ifnet *ifp, struct mbuf *m_head, | |
2266 | struct mbuf *m_tail, const struct ifnet_stat_increment_param *s) | |
2267 | { | |
2268 | return (ifnet_input_common(ifp, m_head, m_tail, s, TRUE, FALSE)); | |
2269 | } | |
2270 | ||
2271 | static errno_t | |
2272 | ifnet_input_common(struct ifnet *ifp, struct mbuf *m_head, struct mbuf *m_tail, | |
2273 | const struct ifnet_stat_increment_param *s, boolean_t ext, boolean_t poll) | |
2274 | { | |
2275 | struct thread *tp = current_thread(); | |
2276 | struct mbuf *last; | |
2277 | struct dlil_threading_info *inp; | |
2278 | u_int32_t m_cnt = 0, m_size = 0; | |
2279 | ||
39236c6e A |
2280 | if ((m_head == NULL && !poll) || (s == NULL && ext)) { |
2281 | if (m_head != NULL) | |
2282 | mbuf_freem_list(m_head); | |
2283 | return (EINVAL); | |
2284 | } | |
2285 | ||
2286 | VERIFY(m_head != NULL || (s == NULL && m_tail == NULL && !ext && poll)); | |
2287 | VERIFY(m_tail == NULL || ext); | |
2288 | VERIFY(s != NULL || !ext); | |
2289 | ||
316670eb A |
2290 | /* |
2291 | * Drop the packet(s) if the parameters are invalid, or if the | |
2292 | * interface is no longer attached; else hold an IO refcnt to | |
2293 | * prevent it from being detached (will be released below.) | |
2294 | */ | |
39236c6e | 2295 | if (ifp == NULL || (ifp != lo_ifp && !ifnet_is_attached(ifp, 1))) { |
316670eb A |
2296 | if (m_head != NULL) |
2297 | mbuf_freem_list(m_head); | |
2298 | return (EINVAL); | |
2299 | } | |
2300 | ||
316670eb A |
2301 | if (m_tail == NULL) { |
2302 | last = m_head; | |
39236c6e | 2303 | while (m_head != NULL) { |
316670eb A |
2304 | #if IFNET_INPUT_SANITY_CHK |
2305 | if (dlil_input_sanity_check != 0) | |
2306 | DLIL_INPUT_CHECK(last, ifp); | |
2307 | #endif /* IFNET_INPUT_SANITY_CHK */ | |
2308 | m_cnt++; | |
2309 | m_size += m_length(last); | |
2310 | if (mbuf_nextpkt(last) == NULL) | |
2311 | break; | |
2312 | last = mbuf_nextpkt(last); | |
2313 | } | |
2314 | m_tail = last; | |
2315 | } else { | |
2316 | #if IFNET_INPUT_SANITY_CHK | |
2317 | if (dlil_input_sanity_check != 0) { | |
2318 | last = m_head; | |
2319 | while (1) { | |
2320 | DLIL_INPUT_CHECK(last, ifp); | |
2321 | m_cnt++; | |
2322 | m_size += m_length(last); | |
2323 | if (mbuf_nextpkt(last) == NULL) | |
2324 | break; | |
2325 | last = mbuf_nextpkt(last); | |
2326 | } | |
2327 | } else { | |
2328 | m_cnt = s->packets_in; | |
2329 | m_size = s->bytes_in; | |
2330 | last = m_tail; | |
2331 | } | |
2332 | #else | |
2333 | m_cnt = s->packets_in; | |
2334 | m_size = s->bytes_in; | |
2335 | last = m_tail; | |
2336 | #endif /* IFNET_INPUT_SANITY_CHK */ | |
2337 | } | |
2338 | ||
2339 | if (last != m_tail) { | |
39236c6e A |
2340 | panic_plain("%s: invalid input packet chain for %s, " |
2341 | "tail mbuf %p instead of %p\n", __func__, if_name(ifp), | |
2342 | m_tail, last); | |
316670eb A |
2343 | } |
2344 | ||
2345 | /* | |
2346 | * Assert packet count only for the extended variant, for backwards | |
2347 | * compatibility, since this came directly from the device driver. | |
2348 | * Relax this assertion for input bytes, as the driver may have | |
2349 | * included the link-layer headers in the computation; hence | |
2350 | * m_size is just an approximation. | |
2351 | */ | |
2352 | if (ext && s->packets_in != m_cnt) { | |
39236c6e A |
2353 | panic_plain("%s: input packet count mismatch for %s, " |
2354 | "%d instead of %d\n", __func__, if_name(ifp), | |
2355 | s->packets_in, m_cnt); | |
316670eb A |
2356 | } |
2357 | ||
2358 | if ((inp = ifp->if_inp) == NULL) | |
2359 | inp = dlil_main_input_thread; | |
2360 | ||
2361 | /* | |
2362 | * If there is a matching DLIL input thread associated with an | |
2363 | * affinity set, associate this thread with the same set. We | |
2364 | * will only do this once. | |
2365 | */ | |
2366 | lck_mtx_lock_spin(&inp->input_lck); | |
2367 | if (inp != dlil_main_input_thread && inp->net_affinity && | |
2368 | ((!poll && inp->wloop_thr == THREAD_NULL) || | |
2369 | (poll && inp->poll_thr == THREAD_NULL))) { | |
2370 | u_int32_t tag = inp->tag; | |
2371 | ||
2372 | if (poll) { | |
2373 | VERIFY(inp->poll_thr == THREAD_NULL); | |
2374 | inp->poll_thr = tp; | |
2375 | } else { | |
2376 | VERIFY(inp->wloop_thr == THREAD_NULL); | |
2377 | inp->wloop_thr = tp; | |
2378 | } | |
2379 | lck_mtx_unlock(&inp->input_lck); | |
2380 | ||
2381 | /* Associate the current thread with the new affinity tag */ | |
2382 | (void) dlil_affinity_set(tp, tag); | |
2383 | ||
2384 | /* | |
2385 | * Take a reference on the current thread; during detach, | |
2386 | * we will need to refer to it in order ot tear down its | |
2387 | * affinity. | |
2388 | */ | |
2389 | thread_reference(tp); | |
2390 | lck_mtx_lock_spin(&inp->input_lck); | |
2391 | } | |
2392 | ||
39236c6e A |
2393 | VERIFY(m_head != NULL || (m_tail == NULL && m_cnt == 0)); |
2394 | ||
316670eb A |
2395 | /* |
2396 | * Because of loopbacked multicast we cannot stuff the ifp in | |
2397 | * the rcvif of the packet header: loopback (lo0) packets use a | |
2398 | * dedicated list so that we can later associate them with lo_ifp | |
2399 | * on their way up the stack. Packets for other interfaces without | |
2400 | * dedicated input threads go to the regular list. | |
2401 | */ | |
39236c6e A |
2402 | if (m_head != NULL) { |
2403 | if (inp == dlil_main_input_thread && ifp == lo_ifp) { | |
2404 | struct dlil_main_threading_info *inpm = | |
2405 | (struct dlil_main_threading_info *)inp; | |
2406 | _addq_multi(&inpm->lo_rcvq_pkts, m_head, m_tail, | |
2407 | m_cnt, m_size); | |
2408 | } else { | |
2409 | _addq_multi(&inp->rcvq_pkts, m_head, m_tail, | |
2410 | m_cnt, m_size); | |
2411 | } | |
316670eb A |
2412 | } |
2413 | ||
2414 | #if IFNET_INPUT_SANITY_CHK | |
2415 | if (dlil_input_sanity_check != 0) { | |
2416 | u_int32_t count; | |
2417 | struct mbuf *m0; | |
2418 | ||
2419 | for (m0 = m_head, count = 0; m0; m0 = mbuf_nextpkt(m0)) | |
2420 | count++; | |
2421 | ||
2422 | if (count != m_cnt) { | |
39236c6e A |
2423 | panic_plain("%s: invalid packet count %d " |
2424 | "(expected %d)\n", if_name(ifp), | |
316670eb A |
2425 | count, m_cnt); |
2426 | /* NOTREACHED */ | |
2427 | } | |
2428 | ||
2429 | inp->input_mbuf_cnt += m_cnt; | |
2430 | } | |
2431 | #endif /* IFNET_INPUT_SANITY_CHK */ | |
2432 | ||
2433 | if (s != NULL) { | |
2434 | dlil_input_stats_add(s, inp, poll); | |
2435 | /* | |
2436 | * If we're using the main input thread, synchronize the | |
2437 | * stats now since we have the interface context. All | |
2438 | * other cases involving dedicated input threads will | |
2439 | * have their stats synchronized there. | |
2440 | */ | |
2441 | if (inp == dlil_main_input_thread) | |
2442 | dlil_input_stats_sync(ifp, inp); | |
2443 | } | |
2444 | ||
2445 | inp->input_waiting |= DLIL_INPUT_WAITING; | |
2446 | if (!(inp->input_waiting & DLIL_INPUT_RUNNING)) { | |
2447 | inp->wtot++; | |
2448 | wakeup_one((caddr_t)&inp->input_waiting); | |
2449 | } | |
2450 | lck_mtx_unlock(&inp->input_lck); | |
2451 | ||
2452 | if (ifp != lo_ifp) { | |
2453 | /* Release the IO refcnt */ | |
2454 | ifnet_decr_iorefcnt(ifp); | |
2455 | } | |
2456 | ||
2457 | return (0); | |
2458 | } | |
2459 | ||
39236c6e A |
2460 | static void |
2461 | ifnet_start_common(struct ifnet *ifp, int resetfc) | |
316670eb | 2462 | { |
39236c6e A |
2463 | if (!(ifp->if_eflags & IFEF_TXSTART)) |
2464 | return; | |
316670eb | 2465 | /* |
39236c6e A |
2466 | * If the starter thread is inactive, signal it to do work, |
2467 | * unless the interface is being flow controlled from below, | |
2468 | * e.g. a virtual interface being flow controlled by a real | |
2469 | * network interface beneath it. | |
316670eb A |
2470 | */ |
2471 | lck_mtx_lock_spin(&ifp->if_start_lock); | |
39236c6e A |
2472 | if (resetfc) { |
2473 | ifp->if_start_flags &= ~IFSF_FLOW_CONTROLLED; | |
2474 | } else if (ifp->if_start_flags & IFSF_FLOW_CONTROLLED) { | |
2475 | lck_mtx_unlock(&ifp->if_start_lock); | |
2476 | return; | |
2477 | } | |
316670eb A |
2478 | ifp->if_start_req++; |
2479 | if (!ifp->if_start_active && ifp->if_start_thread != THREAD_NULL) { | |
2480 | wakeup_one((caddr_t)&ifp->if_start_thread); | |
2481 | } | |
2482 | lck_mtx_unlock(&ifp->if_start_lock); | |
2483 | } | |
2484 | ||
39236c6e A |
2485 | void |
2486 | ifnet_start(struct ifnet *ifp) | |
2487 | { | |
2488 | ifnet_start_common(ifp, 0); | |
2489 | } | |
2490 | ||
316670eb A |
2491 | static void |
2492 | ifnet_start_thread_fn(void *v, wait_result_t w) | |
2493 | { | |
2494 | #pragma unused(w) | |
2495 | struct ifnet *ifp = v; | |
2496 | char ifname[IFNAMSIZ + 1]; | |
2497 | struct timespec *ts = NULL; | |
2498 | struct ifclassq *ifq = &ifp->if_snd; | |
2499 | ||
2500 | /* | |
2501 | * Treat the dedicated starter thread for lo0 as equivalent to | |
2502 | * the driver workloop thread; if net_affinity is enabled for | |
2503 | * the main input thread, associate this starter thread to it | |
2504 | * by binding them with the same affinity tag. This is done | |
2505 | * only once (as we only have one lo_ifp which never goes away.) | |
2506 | */ | |
2507 | if (ifp == lo_ifp) { | |
2508 | struct dlil_threading_info *inp = dlil_main_input_thread; | |
2509 | struct thread *tp = current_thread(); | |
2510 | ||
2511 | lck_mtx_lock(&inp->input_lck); | |
2512 | if (inp->net_affinity) { | |
2513 | u_int32_t tag = inp->tag; | |
2514 | ||
2515 | VERIFY(inp->wloop_thr == THREAD_NULL); | |
2516 | VERIFY(inp->poll_thr == THREAD_NULL); | |
2517 | inp->wloop_thr = tp; | |
2518 | lck_mtx_unlock(&inp->input_lck); | |
2519 | ||
2520 | /* Associate this thread with the affinity tag */ | |
2521 | (void) dlil_affinity_set(tp, tag); | |
2522 | } else { | |
2523 | lck_mtx_unlock(&inp->input_lck); | |
2524 | } | |
2525 | } | |
2526 | ||
39236c6e A |
2527 | snprintf(ifname, sizeof (ifname), "%s_starter", |
2528 | if_name(ifp)); | |
316670eb A |
2529 | |
2530 | lck_mtx_lock_spin(&ifp->if_start_lock); | |
2531 | ||
2532 | for (;;) { | |
2533 | (void) msleep(&ifp->if_start_thread, &ifp->if_start_lock, | |
2534 | (PZERO - 1) | PSPIN, ifname, ts); | |
2535 | ||
2536 | /* interface is detached? */ | |
2537 | if (ifp->if_start_thread == THREAD_NULL) { | |
2538 | ifnet_set_start_cycle(ifp, NULL); | |
2539 | lck_mtx_unlock(&ifp->if_start_lock); | |
2540 | ifnet_purge(ifp); | |
2541 | ||
2542 | if (dlil_verbose) { | |
39236c6e A |
2543 | printf("%s: starter thread terminated\n", |
2544 | if_name(ifp)); | |
316670eb A |
2545 | } |
2546 | ||
2547 | /* for the extra refcnt from kernel_thread_start() */ | |
2548 | thread_deallocate(current_thread()); | |
2549 | /* this is the end */ | |
2550 | thread_terminate(current_thread()); | |
2551 | /* NOTREACHED */ | |
2552 | return; | |
2553 | } | |
2554 | ||
2555 | ifp->if_start_active = 1; | |
2556 | for (;;) { | |
2557 | u_int32_t req = ifp->if_start_req; | |
2558 | ||
2559 | lck_mtx_unlock(&ifp->if_start_lock); | |
2560 | /* invoke the driver's start routine */ | |
2561 | ((*ifp->if_start)(ifp)); | |
2562 | lck_mtx_lock_spin(&ifp->if_start_lock); | |
2563 | ||
2564 | /* if there's no pending request, we're done */ | |
2565 | if (req == ifp->if_start_req) | |
2566 | break; | |
2567 | } | |
2568 | ifp->if_start_req = 0; | |
2569 | ifp->if_start_active = 0; | |
2570 | /* | |
2571 | * Wakeup N ns from now if rate-controlled by TBR, and if | |
2572 | * there are still packets in the send queue which haven't | |
2573 | * been dequeued so far; else sleep indefinitely (ts = NULL) | |
2574 | * until ifnet_start() is called again. | |
2575 | */ | |
2576 | ts = ((IFCQ_TBR_IS_ENABLED(ifq) && !IFCQ_IS_EMPTY(ifq)) ? | |
2577 | &ifp->if_start_cycle : NULL); | |
2578 | ||
2579 | if (ts != NULL && ts->tv_sec == 0 && ts->tv_nsec == 0) | |
2580 | ts = NULL; | |
2581 | } | |
2582 | ||
2583 | /* NOTREACHED */ | |
316670eb A |
2584 | } |
2585 | ||
2586 | void | |
2587 | ifnet_set_start_cycle(struct ifnet *ifp, struct timespec *ts) | |
2588 | { | |
2589 | if (ts == NULL) | |
2590 | bzero(&ifp->if_start_cycle, sizeof (ifp->if_start_cycle)); | |
2591 | else | |
2592 | *(&ifp->if_start_cycle) = *ts; | |
2593 | ||
2594 | if (ts != NULL && ts->tv_nsec != 0 && dlil_verbose) | |
39236c6e A |
2595 | printf("%s: restart interval set to %lu nsec\n", |
2596 | if_name(ifp), ts->tv_nsec); | |
316670eb A |
2597 | } |
2598 | ||
2599 | static void | |
2600 | ifnet_poll(struct ifnet *ifp) | |
2601 | { | |
2602 | /* | |
2603 | * If the poller thread is inactive, signal it to do work. | |
2604 | */ | |
2605 | lck_mtx_lock_spin(&ifp->if_poll_lock); | |
2606 | ifp->if_poll_req++; | |
2607 | if (!ifp->if_poll_active && ifp->if_poll_thread != THREAD_NULL) { | |
2608 | wakeup_one((caddr_t)&ifp->if_poll_thread); | |
2609 | } | |
2610 | lck_mtx_unlock(&ifp->if_poll_lock); | |
2611 | } | |
2612 | ||
2613 | static void | |
2614 | ifnet_poll_thread_fn(void *v, wait_result_t w) | |
2615 | { | |
2616 | #pragma unused(w) | |
2617 | struct dlil_threading_info *inp; | |
2618 | struct ifnet *ifp = v; | |
2619 | char ifname[IFNAMSIZ + 1]; | |
2620 | struct timespec *ts = NULL; | |
2621 | struct ifnet_stat_increment_param s; | |
2622 | ||
39236c6e A |
2623 | snprintf(ifname, sizeof (ifname), "%s_poller", |
2624 | if_name(ifp)); | |
316670eb A |
2625 | bzero(&s, sizeof (s)); |
2626 | ||
2627 | lck_mtx_lock_spin(&ifp->if_poll_lock); | |
2628 | ||
2629 | inp = ifp->if_inp; | |
2630 | VERIFY(inp != NULL); | |
2631 | ||
2632 | for (;;) { | |
2633 | if (ifp->if_poll_thread != THREAD_NULL) { | |
2634 | (void) msleep(&ifp->if_poll_thread, &ifp->if_poll_lock, | |
2635 | (PZERO - 1) | PSPIN, ifname, ts); | |
2636 | } | |
2637 | ||
2638 | /* interface is detached (maybe while asleep)? */ | |
2639 | if (ifp->if_poll_thread == THREAD_NULL) { | |
2640 | ifnet_set_poll_cycle(ifp, NULL); | |
2641 | lck_mtx_unlock(&ifp->if_poll_lock); | |
2642 | ||
2643 | if (dlil_verbose) { | |
39236c6e A |
2644 | printf("%s: poller thread terminated\n", |
2645 | if_name(ifp)); | |
316670eb A |
2646 | } |
2647 | ||
2648 | /* for the extra refcnt from kernel_thread_start() */ | |
2649 | thread_deallocate(current_thread()); | |
2650 | /* this is the end */ | |
2651 | thread_terminate(current_thread()); | |
2652 | /* NOTREACHED */ | |
2653 | return; | |
2654 | } | |
2655 | ||
2656 | ifp->if_poll_active = 1; | |
2657 | for (;;) { | |
2658 | struct mbuf *m_head, *m_tail; | |
2659 | u_int32_t m_lim, m_cnt, m_totlen; | |
2660 | u_int16_t req = ifp->if_poll_req; | |
2661 | ||
2662 | lck_mtx_unlock(&ifp->if_poll_lock); | |
2663 | ||
2664 | /* | |
2665 | * If no longer attached, there's nothing to do; | |
2666 | * else hold an IO refcnt to prevent the interface | |
2667 | * from being detached (will be released below.) | |
2668 | */ | |
db609669 A |
2669 | if (!ifnet_is_attached(ifp, 1)) { |
2670 | lck_mtx_lock_spin(&ifp->if_poll_lock); | |
316670eb | 2671 | break; |
db609669 | 2672 | } |
316670eb | 2673 | |
39236c6e | 2674 | m_lim = (inp->rxpoll_plim != 0) ? inp->rxpoll_plim : |
316670eb A |
2675 | MAX((qlimit(&inp->rcvq_pkts)), |
2676 | (inp->rxpoll_phiwat << 2)); | |
2677 | ||
2678 | if (dlil_verbose > 1) { | |
39236c6e | 2679 | printf("%s: polling up to %d pkts, " |
316670eb A |
2680 | "pkts avg %d max %d, wreq avg %d, " |
2681 | "bytes avg %d\n", | |
39236c6e | 2682 | if_name(ifp), m_lim, |
316670eb A |
2683 | inp->rxpoll_pavg, inp->rxpoll_pmax, |
2684 | inp->rxpoll_wavg, inp->rxpoll_bavg); | |
2685 | } | |
2686 | ||
2687 | /* invoke the driver's input poll routine */ | |
2688 | ((*ifp->if_input_poll)(ifp, 0, m_lim, &m_head, &m_tail, | |
2689 | &m_cnt, &m_totlen)); | |
2690 | ||
2691 | if (m_head != NULL) { | |
2692 | VERIFY(m_tail != NULL && m_cnt > 0); | |
2693 | ||
2694 | if (dlil_verbose > 1) { | |
39236c6e | 2695 | printf("%s: polled %d pkts, " |
316670eb A |
2696 | "pkts avg %d max %d, wreq avg %d, " |
2697 | "bytes avg %d\n", | |
39236c6e | 2698 | if_name(ifp), m_cnt, |
316670eb A |
2699 | inp->rxpoll_pavg, inp->rxpoll_pmax, |
2700 | inp->rxpoll_wavg, inp->rxpoll_bavg); | |
2701 | } | |
2702 | ||
2703 | /* stats are required for extended variant */ | |
2704 | s.packets_in = m_cnt; | |
2705 | s.bytes_in = m_totlen; | |
2706 | ||
2707 | (void) ifnet_input_common(ifp, m_head, m_tail, | |
2708 | &s, TRUE, TRUE); | |
39236c6e A |
2709 | } else { |
2710 | if (dlil_verbose > 1) { | |
2711 | printf("%s: no packets, " | |
2712 | "pkts avg %d max %d, wreq avg %d, " | |
2713 | "bytes avg %d\n", | |
2714 | if_name(ifp), inp->rxpoll_pavg, | |
2715 | inp->rxpoll_pmax, inp->rxpoll_wavg, | |
2716 | inp->rxpoll_bavg); | |
2717 | } | |
2718 | ||
2719 | (void) ifnet_input_common(ifp, NULL, NULL, | |
2720 | NULL, FALSE, TRUE); | |
316670eb A |
2721 | } |
2722 | ||
2723 | /* Release the io ref count */ | |
2724 | ifnet_decr_iorefcnt(ifp); | |
2725 | ||
2726 | lck_mtx_lock_spin(&ifp->if_poll_lock); | |
2727 | ||
2728 | /* if there's no pending request, we're done */ | |
2729 | if (req == ifp->if_poll_req) | |
2730 | break; | |
2731 | } | |
2732 | ifp->if_poll_req = 0; | |
2733 | ifp->if_poll_active = 0; | |
2734 | ||
2735 | /* | |
2736 | * Wakeup N ns from now, else sleep indefinitely (ts = NULL) | |
2737 | * until ifnet_poll() is called again. | |
2738 | */ | |
2739 | ts = &ifp->if_poll_cycle; | |
2740 | if (ts->tv_sec == 0 && ts->tv_nsec == 0) | |
2741 | ts = NULL; | |
2742 | } | |
2743 | ||
2744 | /* NOTREACHED */ | |
316670eb A |
2745 | } |
2746 | ||
2747 | void | |
2748 | ifnet_set_poll_cycle(struct ifnet *ifp, struct timespec *ts) | |
2749 | { | |
2750 | if (ts == NULL) | |
2751 | bzero(&ifp->if_poll_cycle, sizeof (ifp->if_poll_cycle)); | |
2752 | else | |
2753 | *(&ifp->if_poll_cycle) = *ts; | |
2754 | ||
2755 | if (ts != NULL && ts->tv_nsec != 0 && dlil_verbose) | |
39236c6e A |
2756 | printf("%s: poll interval set to %lu nsec\n", |
2757 | if_name(ifp), ts->tv_nsec); | |
316670eb A |
2758 | } |
2759 | ||
2760 | void | |
2761 | ifnet_purge(struct ifnet *ifp) | |
2762 | { | |
2763 | if (ifp != NULL && (ifp->if_eflags & IFEF_TXSTART)) | |
2764 | if_qflush(ifp, 0); | |
2765 | } | |
2766 | ||
2767 | void | |
2768 | ifnet_update_sndq(struct ifclassq *ifq, cqev_t ev) | |
2769 | { | |
2770 | IFCQ_LOCK_ASSERT_HELD(ifq); | |
2771 | ||
2772 | if (!(IFCQ_IS_READY(ifq))) | |
2773 | return; | |
2774 | ||
2775 | if (IFCQ_TBR_IS_ENABLED(ifq)) { | |
2776 | struct tb_profile tb = { ifq->ifcq_tbr.tbr_rate_raw, | |
2777 | ifq->ifcq_tbr.tbr_percent, 0 }; | |
2778 | (void) ifclassq_tbr_set(ifq, &tb, FALSE); | |
2779 | } | |
2780 | ||
2781 | ifclassq_update(ifq, ev); | |
2782 | } | |
2783 | ||
2784 | void | |
2785 | ifnet_update_rcv(struct ifnet *ifp, cqev_t ev) | |
2786 | { | |
2787 | switch (ev) { | |
39236c6e | 2788 | case CLASSQ_EV_LINK_BANDWIDTH: |
316670eb A |
2789 | if (net_rxpoll && (ifp->if_eflags & IFEF_RXPOLL)) |
2790 | ifp->if_poll_update++; | |
2791 | break; | |
2792 | ||
2793 | default: | |
2794 | break; | |
2795 | } | |
2796 | } | |
2797 | ||
2798 | errno_t | |
2799 | ifnet_set_output_sched_model(struct ifnet *ifp, u_int32_t model) | |
2800 | { | |
2801 | struct ifclassq *ifq; | |
2802 | u_int32_t omodel; | |
2803 | errno_t err; | |
2804 | ||
2805 | if (ifp == NULL || (model != IFNET_SCHED_MODEL_DRIVER_MANAGED && | |
2806 | model != IFNET_SCHED_MODEL_NORMAL)) | |
2807 | return (EINVAL); | |
2808 | else if (!(ifp->if_eflags & IFEF_TXSTART)) | |
2809 | return (ENXIO); | |
2810 | ||
2811 | ifq = &ifp->if_snd; | |
2812 | IFCQ_LOCK(ifq); | |
2813 | omodel = ifp->if_output_sched_model; | |
2814 | ifp->if_output_sched_model = model; | |
2815 | if ((err = ifclassq_pktsched_setup(ifq)) != 0) | |
2816 | ifp->if_output_sched_model = omodel; | |
2817 | IFCQ_UNLOCK(ifq); | |
2818 | ||
2819 | return (err); | |
2820 | } | |
2821 | ||
2822 | errno_t | |
2823 | ifnet_set_sndq_maxlen(struct ifnet *ifp, u_int32_t maxqlen) | |
2824 | { | |
2825 | if (ifp == NULL) | |
2826 | return (EINVAL); | |
2827 | else if (!(ifp->if_eflags & IFEF_TXSTART)) | |
2828 | return (ENXIO); | |
2829 | ||
2830 | ifclassq_set_maxlen(&ifp->if_snd, maxqlen); | |
2831 | ||
2832 | return (0); | |
2833 | } | |
2834 | ||
2835 | errno_t | |
2836 | ifnet_get_sndq_maxlen(struct ifnet *ifp, u_int32_t *maxqlen) | |
2837 | { | |
2838 | if (ifp == NULL || maxqlen == NULL) | |
2839 | return (EINVAL); | |
2840 | else if (!(ifp->if_eflags & IFEF_TXSTART)) | |
2841 | return (ENXIO); | |
2842 | ||
2843 | *maxqlen = ifclassq_get_maxlen(&ifp->if_snd); | |
2844 | ||
2845 | return (0); | |
2846 | } | |
2847 | ||
2848 | errno_t | |
39236c6e | 2849 | ifnet_get_sndq_len(struct ifnet *ifp, u_int32_t *pkts) |
316670eb | 2850 | { |
39236c6e A |
2851 | errno_t err; |
2852 | ||
2853 | if (ifp == NULL || pkts == NULL) | |
2854 | err = EINVAL; | |
316670eb | 2855 | else if (!(ifp->if_eflags & IFEF_TXSTART)) |
39236c6e A |
2856 | err = ENXIO; |
2857 | else | |
2858 | err = ifclassq_get_len(&ifp->if_snd, MBUF_SC_UNSPEC, | |
2859 | pkts, NULL); | |
316670eb | 2860 | |
39236c6e A |
2861 | return (err); |
2862 | } | |
316670eb | 2863 | |
39236c6e A |
2864 | errno_t |
2865 | ifnet_get_service_class_sndq_len(struct ifnet *ifp, mbuf_svc_class_t sc, | |
2866 | u_int32_t *pkts, u_int32_t *bytes) | |
2867 | { | |
2868 | errno_t err; | |
2869 | ||
2870 | if (ifp == NULL || !MBUF_VALID_SC(sc) || | |
2871 | (pkts == NULL && bytes == NULL)) | |
2872 | err = EINVAL; | |
2873 | else if (!(ifp->if_eflags & IFEF_TXSTART)) | |
2874 | err = ENXIO; | |
2875 | else | |
2876 | err = ifclassq_get_len(&ifp->if_snd, sc, pkts, bytes); | |
2877 | ||
2878 | return (err); | |
316670eb A |
2879 | } |
2880 | ||
2881 | errno_t | |
2882 | ifnet_set_rcvq_maxlen(struct ifnet *ifp, u_int32_t maxqlen) | |
2883 | { | |
2884 | struct dlil_threading_info *inp; | |
2885 | ||
2886 | if (ifp == NULL) | |
2887 | return (EINVAL); | |
2888 | else if (!(ifp->if_eflags & IFEF_RXPOLL) || ifp->if_inp == NULL) | |
2889 | return (ENXIO); | |
2890 | ||
2891 | if (maxqlen == 0) | |
2892 | maxqlen = if_rcvq_maxlen; | |
2893 | else if (maxqlen < IF_RCVQ_MINLEN) | |
2894 | maxqlen = IF_RCVQ_MINLEN; | |
2895 | ||
2896 | inp = ifp->if_inp; | |
2897 | lck_mtx_lock(&inp->input_lck); | |
2898 | qlimit(&inp->rcvq_pkts) = maxqlen; | |
2899 | lck_mtx_unlock(&inp->input_lck); | |
2900 | ||
2901 | return (0); | |
2902 | } | |
2903 | ||
2904 | errno_t | |
2905 | ifnet_get_rcvq_maxlen(struct ifnet *ifp, u_int32_t *maxqlen) | |
2906 | { | |
2907 | struct dlil_threading_info *inp; | |
2908 | ||
2909 | if (ifp == NULL || maxqlen == NULL) | |
2910 | return (EINVAL); | |
2911 | else if (!(ifp->if_eflags & IFEF_RXPOLL) || ifp->if_inp == NULL) | |
2912 | return (ENXIO); | |
2913 | ||
2914 | inp = ifp->if_inp; | |
2915 | lck_mtx_lock(&inp->input_lck); | |
2916 | *maxqlen = qlimit(&inp->rcvq_pkts); | |
2917 | lck_mtx_unlock(&inp->input_lck); | |
2918 | return (0); | |
2919 | } | |
2920 | ||
2921 | errno_t | |
2922 | ifnet_enqueue(struct ifnet *ifp, struct mbuf *m) | |
2923 | { | |
2924 | int error; | |
2925 | ||
2926 | if (ifp == NULL || m == NULL || !(m->m_flags & M_PKTHDR) || | |
2927 | m->m_nextpkt != NULL) { | |
2928 | if (m != NULL) | |
2929 | m_freem_list(m); | |
2930 | return (EINVAL); | |
2931 | } else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
2932 | !(ifp->if_refflags & IFRF_ATTACHED)) { | |
2933 | /* flag tested without lock for performance */ | |
2934 | m_freem(m); | |
2935 | return (ENXIO); | |
2936 | } else if (!(ifp->if_flags & IFF_UP)) { | |
2937 | m_freem(m); | |
2938 | return (ENETDOWN); | |
316670eb A |
2939 | } |
2940 | ||
2941 | /* enqueue the packet */ | |
2942 | error = ifclassq_enqueue(&ifp->if_snd, m); | |
2943 | ||
2944 | /* | |
2945 | * Tell the driver to start dequeueing; do this even when the queue | |
2946 | * for the packet is suspended (EQSUSPENDED), as the driver could still | |
2947 | * be dequeueing from other unsuspended queues. | |
2948 | */ | |
2949 | if (error == 0 || error == EQFULL || error == EQSUSPENDED) | |
2950 | ifnet_start(ifp); | |
2951 | ||
2952 | return (error); | |
2953 | } | |
2954 | ||
2955 | errno_t | |
2956 | ifnet_dequeue(struct ifnet *ifp, struct mbuf **mp) | |
2957 | { | |
fe8ab488 | 2958 | errno_t rc; |
316670eb A |
2959 | if (ifp == NULL || mp == NULL) |
2960 | return (EINVAL); | |
2961 | else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
2962 | (ifp->if_output_sched_model != IFNET_SCHED_MODEL_NORMAL)) | |
2963 | return (ENXIO); | |
fe8ab488 A |
2964 | if (!ifnet_is_attached(ifp, 1)) |
2965 | return (ENXIO); | |
2966 | rc = ifclassq_dequeue(&ifp->if_snd, 1, mp, NULL, NULL, NULL); | |
2967 | ifnet_decr_iorefcnt(ifp); | |
316670eb | 2968 | |
fe8ab488 | 2969 | return (rc); |
316670eb A |
2970 | } |
2971 | ||
2972 | errno_t | |
2973 | ifnet_dequeue_service_class(struct ifnet *ifp, mbuf_svc_class_t sc, | |
2974 | struct mbuf **mp) | |
2975 | { | |
fe8ab488 | 2976 | errno_t rc; |
316670eb A |
2977 | if (ifp == NULL || mp == NULL || !MBUF_VALID_SC(sc)) |
2978 | return (EINVAL); | |
2979 | else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
2980 | (ifp->if_output_sched_model != IFNET_SCHED_MODEL_DRIVER_MANAGED)) | |
2981 | return (ENXIO); | |
fe8ab488 A |
2982 | if (!ifnet_is_attached(ifp, 1)) |
2983 | return (ENXIO); | |
2984 | ||
2985 | rc = ifclassq_dequeue_sc(&ifp->if_snd, sc, 1, mp, NULL, NULL, NULL); | |
2986 | ifnet_decr_iorefcnt(ifp); | |
2987 | return (rc); | |
316670eb A |
2988 | } |
2989 | ||
2990 | errno_t | |
2991 | ifnet_dequeue_multi(struct ifnet *ifp, u_int32_t limit, struct mbuf **head, | |
2992 | struct mbuf **tail, u_int32_t *cnt, u_int32_t *len) | |
2993 | { | |
fe8ab488 | 2994 | errno_t rc; |
316670eb A |
2995 | if (ifp == NULL || head == NULL || limit < 1) |
2996 | return (EINVAL); | |
2997 | else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
2998 | (ifp->if_output_sched_model != IFNET_SCHED_MODEL_NORMAL)) | |
2999 | return (ENXIO); | |
fe8ab488 A |
3000 | if (!ifnet_is_attached(ifp, 1)) |
3001 | return (ENXIO); | |
3002 | ||
3003 | rc = ifclassq_dequeue(&ifp->if_snd, limit, head, tail, cnt, len); | |
3004 | ifnet_decr_iorefcnt(ifp); | |
3005 | return (rc); | |
316670eb A |
3006 | } |
3007 | ||
3008 | errno_t | |
3009 | ifnet_dequeue_service_class_multi(struct ifnet *ifp, mbuf_svc_class_t sc, | |
3010 | u_int32_t limit, struct mbuf **head, struct mbuf **tail, u_int32_t *cnt, | |
3011 | u_int32_t *len) | |
3012 | { | |
fe8ab488 | 3013 | errno_t rc; |
316670eb A |
3014 | if (ifp == NULL || head == NULL || limit < 1 || !MBUF_VALID_SC(sc)) |
3015 | return (EINVAL); | |
3016 | else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
3017 | (ifp->if_output_sched_model != IFNET_SCHED_MODEL_DRIVER_MANAGED)) | |
3018 | return (ENXIO); | |
fe8ab488 A |
3019 | if (!ifnet_is_attached(ifp, 1)) |
3020 | return (ENXIO); | |
3021 | rc = ifclassq_dequeue_sc(&ifp->if_snd, sc, limit, head, | |
3022 | tail, cnt, len); | |
3023 | ifnet_decr_iorefcnt(ifp); | |
3024 | return (rc); | |
316670eb A |
3025 | } |
3026 | ||
39236c6e A |
3027 | errno_t |
3028 | ifnet_framer_stub(struct ifnet *ifp, struct mbuf **m, | |
3029 | const struct sockaddr *dest, const char *dest_linkaddr, | |
3030 | const char *frame_type, u_int32_t *pre, u_int32_t *post) | |
3031 | { | |
3032 | if (pre != NULL) | |
3033 | *pre = 0; | |
3034 | if (post != NULL) | |
3035 | *post = 0; | |
3036 | ||
3037 | return (ifp->if_framer_legacy(ifp, m, dest, dest_linkaddr, frame_type)); | |
3038 | } | |
3039 | ||
316670eb A |
3040 | static int |
3041 | dlil_interface_filters_input(struct ifnet *ifp, struct mbuf **m_p, | |
3042 | char **frame_header_p, protocol_family_t protocol_family) | |
3043 | { | |
3044 | struct ifnet_filter *filter; | |
3045 | ||
3046 | /* | |
3047 | * Pass the inbound packet to the interface filters | |
6d2010ae A |
3048 | */ |
3049 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
3050 | /* prevent filter list from changing in case we drop the lock */ | |
3051 | if_flt_monitor_busy(ifp); | |
2d21ac55 A |
3052 | TAILQ_FOREACH(filter, &ifp->if_flt_head, filt_next) { |
3053 | int result; | |
3054 | ||
6d2010ae A |
3055 | if (!filter->filt_skip && filter->filt_input != NULL && |
3056 | (filter->filt_protocol == 0 || | |
3057 | filter->filt_protocol == protocol_family)) { | |
3058 | lck_mtx_unlock(&ifp->if_flt_lock); | |
3059 | ||
2d21ac55 | 3060 | result = (*filter->filt_input)(filter->filt_cookie, |
6d2010ae A |
3061 | ifp, protocol_family, m_p, frame_header_p); |
3062 | ||
3063 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
2d21ac55 | 3064 | if (result != 0) { |
6d2010ae A |
3065 | /* we're done with the filter list */ |
3066 | if_flt_monitor_unbusy(ifp); | |
3067 | lck_mtx_unlock(&ifp->if_flt_lock); | |
2d21ac55 A |
3068 | return (result); |
3069 | } | |
3070 | } | |
3071 | } | |
6d2010ae A |
3072 | /* we're done with the filter list */ |
3073 | if_flt_monitor_unbusy(ifp); | |
3074 | lck_mtx_unlock(&ifp->if_flt_lock); | |
b7266188 A |
3075 | |
3076 | /* | |
6d2010ae | 3077 | * Strip away M_PROTO1 bit prior to sending packet up the stack as |
b7266188 A |
3078 | * it is meant to be local to a subsystem -- if_bridge for M_PROTO1 |
3079 | */ | |
3080 | if (*m_p != NULL) | |
3081 | (*m_p)->m_flags &= ~M_PROTO1; | |
3082 | ||
2d21ac55 | 3083 | return (0); |
1c79356b A |
3084 | } |
3085 | ||
6d2010ae A |
3086 | static int |
3087 | dlil_interface_filters_output(struct ifnet *ifp, struct mbuf **m_p, | |
3088 | protocol_family_t protocol_family) | |
3089 | { | |
3090 | struct ifnet_filter *filter; | |
3091 | ||
3092 | /* | |
3093 | * Pass the outbound packet to the interface filters | |
3094 | */ | |
3095 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
3096 | /* prevent filter list from changing in case we drop the lock */ | |
3097 | if_flt_monitor_busy(ifp); | |
3098 | TAILQ_FOREACH(filter, &ifp->if_flt_head, filt_next) { | |
3099 | int result; | |
3100 | ||
3101 | if (!filter->filt_skip && filter->filt_output != NULL && | |
3102 | (filter->filt_protocol == 0 || | |
3103 | filter->filt_protocol == protocol_family)) { | |
3104 | lck_mtx_unlock(&ifp->if_flt_lock); | |
3105 | ||
3106 | result = filter->filt_output(filter->filt_cookie, ifp, | |
3107 | protocol_family, m_p); | |
3108 | ||
3109 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
3110 | if (result != 0) { | |
3111 | /* we're done with the filter list */ | |
3112 | if_flt_monitor_unbusy(ifp); | |
3113 | lck_mtx_unlock(&ifp->if_flt_lock); | |
3114 | return (result); | |
3115 | } | |
3116 | } | |
3117 | } | |
3118 | /* we're done with the filter list */ | |
3119 | if_flt_monitor_unbusy(ifp); | |
3120 | lck_mtx_unlock(&ifp->if_flt_lock); | |
3121 | ||
3122 | return (0); | |
3123 | } | |
3124 | ||
2d21ac55 A |
3125 | static void |
3126 | dlil_ifproto_input(struct if_proto * ifproto, mbuf_t m) | |
1c79356b | 3127 | { |
2d21ac55 | 3128 | int error; |
1c79356b | 3129 | |
2d21ac55 A |
3130 | if (ifproto->proto_kpi == kProtoKPI_v1) { |
3131 | /* Version 1 protocols get one packet at a time */ | |
3132 | while (m != NULL) { | |
3133 | char * frame_header; | |
3134 | mbuf_t next_packet; | |
6d2010ae | 3135 | |
2d21ac55 A |
3136 | next_packet = m->m_nextpkt; |
3137 | m->m_nextpkt = NULL; | |
39236c6e A |
3138 | frame_header = m->m_pkthdr.pkt_hdr; |
3139 | m->m_pkthdr.pkt_hdr = NULL; | |
6d2010ae A |
3140 | error = (*ifproto->kpi.v1.input)(ifproto->ifp, |
3141 | ifproto->protocol_family, m, frame_header); | |
2d21ac55 A |
3142 | if (error != 0 && error != EJUSTRETURN) |
3143 | m_freem(m); | |
3144 | m = next_packet; | |
3145 | } | |
6d2010ae | 3146 | } else if (ifproto->proto_kpi == kProtoKPI_v2) { |
2d21ac55 A |
3147 | /* Version 2 protocols support packet lists */ |
3148 | error = (*ifproto->kpi.v2.input)(ifproto->ifp, | |
6d2010ae | 3149 | ifproto->protocol_family, m); |
2d21ac55 A |
3150 | if (error != 0 && error != EJUSTRETURN) |
3151 | m_freem_list(m); | |
91447636 | 3152 | } |
2d21ac55 A |
3153 | return; |
3154 | } | |
1c79356b | 3155 | |
316670eb A |
3156 | static void |
3157 | dlil_input_stats_add(const struct ifnet_stat_increment_param *s, | |
3158 | struct dlil_threading_info *inp, boolean_t poll) | |
3159 | { | |
3160 | struct ifnet_stat_increment_param *d = &inp->stats; | |
3161 | ||
3162 | if (s->packets_in != 0) | |
3163 | d->packets_in += s->packets_in; | |
3164 | if (s->bytes_in != 0) | |
3165 | d->bytes_in += s->bytes_in; | |
3166 | if (s->errors_in != 0) | |
3167 | d->errors_in += s->errors_in; | |
3168 | ||
3169 | if (s->packets_out != 0) | |
3170 | d->packets_out += s->packets_out; | |
3171 | if (s->bytes_out != 0) | |
3172 | d->bytes_out += s->bytes_out; | |
3173 | if (s->errors_out != 0) | |
3174 | d->errors_out += s->errors_out; | |
3175 | ||
3176 | if (s->collisions != 0) | |
3177 | d->collisions += s->collisions; | |
3178 | if (s->dropped != 0) | |
3179 | d->dropped += s->dropped; | |
3180 | ||
3181 | if (poll) | |
3182 | PKTCNTR_ADD(&inp->tstats, s->packets_in, s->bytes_in); | |
3183 | } | |
3184 | ||
3185 | static void | |
3186 | dlil_input_stats_sync(struct ifnet *ifp, struct dlil_threading_info *inp) | |
3187 | { | |
3188 | struct ifnet_stat_increment_param *s = &inp->stats; | |
3189 | ||
3190 | /* | |
3191 | * Use of atomic operations is unavoidable here because | |
3192 | * these stats may also be incremented elsewhere via KPIs. | |
3193 | */ | |
3194 | if (s->packets_in != 0) { | |
3195 | atomic_add_64(&ifp->if_data.ifi_ipackets, s->packets_in); | |
3196 | s->packets_in = 0; | |
3197 | } | |
3198 | if (s->bytes_in != 0) { | |
3199 | atomic_add_64(&ifp->if_data.ifi_ibytes, s->bytes_in); | |
3200 | s->bytes_in = 0; | |
3201 | } | |
3202 | if (s->errors_in != 0) { | |
3203 | atomic_add_64(&ifp->if_data.ifi_ierrors, s->errors_in); | |
3204 | s->errors_in = 0; | |
3205 | } | |
3206 | ||
3207 | if (s->packets_out != 0) { | |
3208 | atomic_add_64(&ifp->if_data.ifi_opackets, s->packets_out); | |
3209 | s->packets_out = 0; | |
3210 | } | |
3211 | if (s->bytes_out != 0) { | |
3212 | atomic_add_64(&ifp->if_data.ifi_obytes, s->bytes_out); | |
3213 | s->bytes_out = 0; | |
3214 | } | |
3215 | if (s->errors_out != 0) { | |
3216 | atomic_add_64(&ifp->if_data.ifi_oerrors, s->errors_out); | |
3217 | s->errors_out = 0; | |
3218 | } | |
3219 | ||
3220 | if (s->collisions != 0) { | |
3221 | atomic_add_64(&ifp->if_data.ifi_collisions, s->collisions); | |
3222 | s->collisions = 0; | |
3223 | } | |
3224 | if (s->dropped != 0) { | |
3225 | atomic_add_64(&ifp->if_data.ifi_iqdrops, s->dropped); | |
3226 | s->dropped = 0; | |
3227 | } | |
39236c6e A |
3228 | /* |
3229 | * If we went over the threshold, notify NetworkStatistics. | |
3230 | */ | |
3231 | if (ifp->if_data_threshold && | |
3232 | (ifp->if_ibytes + ifp->if_obytes) - ifp->if_dt_bytes > | |
3233 | ifp->if_data_threshold) { | |
3234 | ifp->if_dt_bytes = ifp->if_ibytes + ifp->if_obytes; | |
3235 | nstat_ifnet_threshold_reached(ifp->if_index); | |
3236 | } | |
316670eb A |
3237 | /* |
3238 | * No need for atomic operations as they are modified here | |
3239 | * only from within the DLIL input thread context. | |
3240 | */ | |
3241 | if (inp->tstats.packets != 0) { | |
3242 | inp->pstats.ifi_poll_packets += inp->tstats.packets; | |
3243 | inp->tstats.packets = 0; | |
3244 | } | |
3245 | if (inp->tstats.bytes != 0) { | |
3246 | inp->pstats.ifi_poll_bytes += inp->tstats.bytes; | |
3247 | inp->tstats.bytes = 0; | |
3248 | } | |
3249 | } | |
3250 | ||
3251 | __private_extern__ void | |
3252 | dlil_input_packet_list(struct ifnet *ifp, struct mbuf *m) | |
3253 | { | |
3254 | return (dlil_input_packet_list_common(ifp, m, 0, | |
3255 | IFNET_MODEL_INPUT_POLL_OFF, FALSE)); | |
3256 | } | |
3257 | ||
2d21ac55 | 3258 | __private_extern__ void |
316670eb A |
3259 | dlil_input_packet_list_extended(struct ifnet *ifp, struct mbuf *m, |
3260 | u_int32_t cnt, ifnet_model_t mode) | |
3261 | { | |
3262 | return (dlil_input_packet_list_common(ifp, m, cnt, mode, TRUE)); | |
3263 | } | |
3264 | ||
3265 | static void | |
3266 | dlil_input_packet_list_common(struct ifnet *ifp_param, struct mbuf *m, | |
3267 | u_int32_t cnt, ifnet_model_t mode, boolean_t ext) | |
2d21ac55 A |
3268 | { |
3269 | int error = 0; | |
2d21ac55 A |
3270 | protocol_family_t protocol_family; |
3271 | mbuf_t next_packet; | |
3272 | ifnet_t ifp = ifp_param; | |
3273 | char * frame_header; | |
3274 | struct if_proto * last_ifproto = NULL; | |
3275 | mbuf_t pkt_first = NULL; | |
3276 | mbuf_t * pkt_next = NULL; | |
316670eb | 3277 | u_int32_t poll_thresh = 0, poll_ival = 0; |
2d21ac55 A |
3278 | |
3279 | KERNEL_DEBUG(DBG_FNC_DLIL_INPUT | DBG_FUNC_START,0,0,0,0,0); | |
3280 | ||
316670eb A |
3281 | if (ext && mode == IFNET_MODEL_INPUT_POLL_ON && cnt > 1 && |
3282 | (poll_ival = if_rxpoll_interval_pkts) > 0) | |
3283 | poll_thresh = cnt; | |
6d2010ae | 3284 | |
2d21ac55 | 3285 | while (m != NULL) { |
6d2010ae A |
3286 | struct if_proto *ifproto = NULL; |
3287 | int iorefcnt = 0; | |
39236c6e | 3288 | uint32_t pktf_mask; /* pkt flags to preserve */ |
2d21ac55 | 3289 | |
2d21ac55 A |
3290 | if (ifp_param == NULL) |
3291 | ifp = m->m_pkthdr.rcvif; | |
6d2010ae | 3292 | |
316670eb A |
3293 | if ((ifp->if_eflags & IFEF_RXPOLL) && poll_thresh != 0 && |
3294 | poll_ival > 0 && (--poll_thresh % poll_ival) == 0) | |
3295 | ifnet_poll(ifp); | |
3296 | ||
6d2010ae | 3297 | /* Check if this mbuf looks valid */ |
316670eb | 3298 | MBUF_INPUT_CHECK(m, ifp); |
6d2010ae A |
3299 | |
3300 | next_packet = m->m_nextpkt; | |
3301 | m->m_nextpkt = NULL; | |
39236c6e A |
3302 | frame_header = m->m_pkthdr.pkt_hdr; |
3303 | m->m_pkthdr.pkt_hdr = NULL; | |
2d21ac55 | 3304 | |
316670eb A |
3305 | /* |
3306 | * Get an IO reference count if the interface is not | |
3307 | * loopback (lo0) and it is attached; lo0 never goes | |
3308 | * away, so optimize for that. | |
6d2010ae A |
3309 | */ |
3310 | if (ifp != lo_ifp) { | |
3311 | if (!ifnet_is_attached(ifp, 1)) { | |
3312 | m_freem(m); | |
3313 | goto next; | |
3314 | } | |
3315 | iorefcnt = 1; | |
39236c6e A |
3316 | pktf_mask = 0; |
3317 | } else { | |
3318 | /* | |
3319 | * If this arrived on lo0, preserve interface addr | |
3320 | * info to allow for connectivity between loopback | |
3321 | * and local interface addresses. | |
3322 | */ | |
3323 | pktf_mask = (PKTF_LOOP|PKTF_IFAINFO); | |
2d21ac55 | 3324 | } |
d41d1dae | 3325 | |
39236c6e A |
3326 | /* make sure packet comes in clean */ |
3327 | m_classifier_init(m, pktf_mask); | |
3328 | ||
316670eb | 3329 | ifp_inc_traffic_class_in(ifp, m); |
d41d1dae | 3330 | |
2d21ac55 | 3331 | /* find which protocol family this packet is for */ |
6d2010ae | 3332 | ifnet_lock_shared(ifp); |
2d21ac55 | 3333 | error = (*ifp->if_demux)(ifp, m, frame_header, |
6d2010ae A |
3334 | &protocol_family); |
3335 | ifnet_lock_done(ifp); | |
2d21ac55 | 3336 | if (error != 0) { |
6d2010ae | 3337 | if (error == EJUSTRETURN) |
2d21ac55 | 3338 | goto next; |
2d21ac55 A |
3339 | protocol_family = 0; |
3340 | } | |
6d2010ae | 3341 | |
39236c6e A |
3342 | if (hwcksum_dbg != 0 && !(ifp->if_flags & IFF_LOOPBACK) && |
3343 | !(m->m_pkthdr.pkt_flags & PKTF_LOOP)) | |
3344 | dlil_input_cksum_dbg(ifp, m, frame_header, | |
3345 | protocol_family); | |
3346 | ||
3347 | /* | |
3348 | * For partial checksum offload, we expect the driver to | |
3349 | * set the start offset indicating the start of the span | |
3350 | * that is covered by the hardware-computed checksum; | |
3351 | * adjust this start offset accordingly because the data | |
3352 | * pointer has been advanced beyond the link-layer header. | |
3353 | * | |
3354 | * Don't adjust if the interface is a bridge member, as | |
3355 | * the adjustment will occur from the context of the | |
3356 | * bridge interface during input. | |
3357 | */ | |
3358 | if (ifp->if_bridge == NULL && (m->m_pkthdr.csum_flags & | |
3359 | (CSUM_DATA_VALID | CSUM_PARTIAL)) == | |
3360 | (CSUM_DATA_VALID | CSUM_PARTIAL)) { | |
3361 | int adj; | |
3362 | ||
3363 | if (frame_header == NULL || | |
3364 | frame_header < (char *)mbuf_datastart(m) || | |
3365 | frame_header > (char *)m->m_data || | |
3366 | (adj = (m->m_data - frame_header)) > | |
3367 | m->m_pkthdr.csum_rx_start) { | |
3368 | m->m_pkthdr.csum_data = 0; | |
3369 | m->m_pkthdr.csum_flags &= ~CSUM_DATA_VALID; | |
3370 | hwcksum_in_invalidated++; | |
3371 | } else { | |
3372 | m->m_pkthdr.csum_rx_start -= adj; | |
3373 | } | |
3374 | } | |
3375 | ||
3376 | pktap_input(ifp, protocol_family, m, frame_header); | |
316670eb | 3377 | |
2d21ac55 | 3378 | if (m->m_flags & (M_BCAST|M_MCAST)) |
6d2010ae | 3379 | atomic_add_64(&ifp->if_imcasts, 1); |
1c79356b | 3380 | |
2d21ac55 A |
3381 | /* run interface filters, exclude VLAN packets PR-3586856 */ |
3382 | if ((m->m_pkthdr.csum_flags & CSUM_VLAN_TAG_VALID) == 0) { | |
6d2010ae A |
3383 | error = dlil_interface_filters_input(ifp, &m, |
3384 | &frame_header, protocol_family); | |
3385 | if (error != 0) { | |
3386 | if (error != EJUSTRETURN) | |
2d21ac55 | 3387 | m_freem(m); |
2d21ac55 | 3388 | goto next; |
91447636 A |
3389 | } |
3390 | } | |
2d21ac55 | 3391 | if (error != 0 || ((m->m_flags & M_PROMISC) != 0) ) { |
91447636 | 3392 | m_freem(m); |
2d21ac55 | 3393 | goto next; |
91447636 | 3394 | } |
6d2010ae | 3395 | |
2d21ac55 A |
3396 | /* Lookup the protocol attachment to this interface */ |
3397 | if (protocol_family == 0) { | |
3398 | ifproto = NULL; | |
6d2010ae A |
3399 | } else if (last_ifproto != NULL && last_ifproto->ifp == ifp && |
3400 | (last_ifproto->protocol_family == protocol_family)) { | |
3401 | VERIFY(ifproto == NULL); | |
2d21ac55 | 3402 | ifproto = last_ifproto; |
6d2010ae A |
3403 | if_proto_ref(last_ifproto); |
3404 | } else { | |
3405 | VERIFY(ifproto == NULL); | |
3406 | ifnet_lock_shared(ifp); | |
3407 | /* callee holds a proto refcnt upon success */ | |
2d21ac55 | 3408 | ifproto = find_attached_proto(ifp, protocol_family); |
6d2010ae | 3409 | ifnet_lock_done(ifp); |
2d21ac55 A |
3410 | } |
3411 | if (ifproto == NULL) { | |
3412 | /* no protocol for this packet, discard */ | |
3413 | m_freem(m); | |
3414 | goto next; | |
3415 | } | |
3416 | if (ifproto != last_ifproto) { | |
2d21ac55 A |
3417 | if (last_ifproto != NULL) { |
3418 | /* pass up the list for the previous protocol */ | |
2d21ac55 A |
3419 | dlil_ifproto_input(last_ifproto, pkt_first); |
3420 | pkt_first = NULL; | |
3421 | if_proto_free(last_ifproto); | |
2d21ac55 A |
3422 | } |
3423 | last_ifproto = ifproto; | |
6d2010ae | 3424 | if_proto_ref(ifproto); |
2d21ac55 A |
3425 | } |
3426 | /* extend the list */ | |
39236c6e | 3427 | m->m_pkthdr.pkt_hdr = frame_header; |
2d21ac55 A |
3428 | if (pkt_first == NULL) { |
3429 | pkt_first = m; | |
3430 | } else { | |
3431 | *pkt_next = m; | |
3432 | } | |
3433 | pkt_next = &m->m_nextpkt; | |
1c79356b | 3434 | |
6d2010ae | 3435 | next: |
2d21ac55 A |
3436 | if (next_packet == NULL && last_ifproto != NULL) { |
3437 | /* pass up the last list of packets */ | |
2d21ac55 A |
3438 | dlil_ifproto_input(last_ifproto, pkt_first); |
3439 | if_proto_free(last_ifproto); | |
6d2010ae A |
3440 | last_ifproto = NULL; |
3441 | } | |
3442 | if (ifproto != NULL) { | |
3443 | if_proto_free(ifproto); | |
3444 | ifproto = NULL; | |
2d21ac55 | 3445 | } |
316670eb | 3446 | |
2d21ac55 | 3447 | m = next_packet; |
1c79356b | 3448 | |
6d2010ae A |
3449 | /* update the driver's multicast filter, if needed */ |
3450 | if (ifp->if_updatemcasts > 0 && if_mcasts_update(ifp) == 0) | |
3451 | ifp->if_updatemcasts = 0; | |
3452 | if (iorefcnt == 1) | |
3453 | ifnet_decr_iorefcnt(ifp); | |
91447636 | 3454 | } |
6d2010ae | 3455 | |
91447636 | 3456 | KERNEL_DEBUG(DBG_FNC_DLIL_INPUT | DBG_FUNC_END,0,0,0,0,0); |
1c79356b A |
3457 | } |
3458 | ||
6d2010ae A |
3459 | errno_t |
3460 | if_mcasts_update(struct ifnet *ifp) | |
3461 | { | |
3462 | errno_t err; | |
3463 | ||
3464 | err = ifnet_ioctl(ifp, 0, SIOCADDMULTI, NULL); | |
3465 | if (err == EAFNOSUPPORT) | |
3466 | err = 0; | |
39236c6e A |
3467 | printf("%s: %s %d suspended link-layer multicast membership(s) " |
3468 | "(err=%d)\n", if_name(ifp), | |
6d2010ae A |
3469 | (err == 0 ? "successfully restored" : "failed to restore"), |
3470 | ifp->if_updatemcasts, err); | |
3471 | ||
3472 | /* just return success */ | |
3473 | return (0); | |
3474 | } | |
3475 | ||
a1c7dba1 A |
3476 | |
3477 | #define TMP_IF_PROTO_ARR_SIZE 10 | |
91447636 A |
3478 | static int |
3479 | dlil_event_internal(struct ifnet *ifp, struct kev_msg *event) | |
1c79356b | 3480 | { |
a1c7dba1 A |
3481 | struct ifnet_filter *filter = NULL; |
3482 | struct if_proto *proto = NULL; | |
3483 | int if_proto_count = 0; | |
3484 | struct if_proto **tmp_ifproto_arr = NULL; | |
3485 | struct if_proto *tmp_ifproto_stack_arr[TMP_IF_PROTO_ARR_SIZE] = {NULL}; | |
3486 | int tmp_ifproto_arr_idx = 0; | |
3487 | bool tmp_malloc = false; | |
6d2010ae A |
3488 | |
3489 | /* Get an io ref count if the interface is attached */ | |
3490 | if (!ifnet_is_attached(ifp, 1)) | |
3491 | goto done; | |
3492 | ||
3493 | /* | |
3494 | * Pass the event to the interface filters | |
3495 | */ | |
3496 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
3497 | /* prevent filter list from changing in case we drop the lock */ | |
3498 | if_flt_monitor_busy(ifp); | |
3499 | TAILQ_FOREACH(filter, &ifp->if_flt_head, filt_next) { | |
3500 | if (filter->filt_event != NULL) { | |
3501 | lck_mtx_unlock(&ifp->if_flt_lock); | |
3502 | ||
3503 | filter->filt_event(filter->filt_cookie, ifp, | |
3504 | filter->filt_protocol, event); | |
3505 | ||
3506 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
91447636 | 3507 | } |
6d2010ae A |
3508 | } |
3509 | /* we're done with the filter list */ | |
3510 | if_flt_monitor_unbusy(ifp); | |
3511 | lck_mtx_unlock(&ifp->if_flt_lock); | |
3512 | ||
a1c7dba1 A |
3513 | /* |
3514 | * An embedded tmp_list_entry in if_proto may still get | |
3515 | * over-written by another thread after giving up ifnet lock, | |
3516 | * therefore we are avoiding embedded pointers here. | |
3517 | */ | |
6d2010ae | 3518 | ifnet_lock_shared(ifp); |
a1c7dba1 A |
3519 | if_proto_count = dlil_ifp_proto_count(ifp); |
3520 | if (if_proto_count) { | |
6d2010ae | 3521 | int i; |
a1c7dba1 A |
3522 | VERIFY(ifp->if_proto_hash != NULL); |
3523 | if (if_proto_count <= TMP_IF_PROTO_ARR_SIZE) { | |
3524 | tmp_ifproto_arr = tmp_ifproto_stack_arr; | |
3525 | } else { | |
3526 | MALLOC(tmp_ifproto_arr, struct if_proto **, | |
3527 | sizeof (*tmp_ifproto_arr) * if_proto_count, | |
3528 | M_TEMP, M_ZERO); | |
3529 | if (tmp_ifproto_arr == NULL) { | |
3530 | ifnet_lock_done(ifp); | |
3531 | goto cleanup; | |
3532 | } | |
3533 | tmp_malloc = true; | |
3534 | } | |
6d2010ae A |
3535 | |
3536 | for (i = 0; i < PROTO_HASH_SLOTS; i++) { | |
6d2010ae A |
3537 | SLIST_FOREACH(proto, &ifp->if_proto_hash[i], |
3538 | next_hash) { | |
a1c7dba1 A |
3539 | if_proto_ref(proto); |
3540 | tmp_ifproto_arr[tmp_ifproto_arr_idx] = proto; | |
3541 | tmp_ifproto_arr_idx++; | |
91447636 A |
3542 | } |
3543 | } | |
a1c7dba1 | 3544 | VERIFY(if_proto_count == tmp_ifproto_arr_idx); |
91447636 | 3545 | } |
6d2010ae A |
3546 | ifnet_lock_done(ifp); |
3547 | ||
a1c7dba1 A |
3548 | for (tmp_ifproto_arr_idx = 0; tmp_ifproto_arr_idx < if_proto_count; |
3549 | tmp_ifproto_arr_idx++) { | |
3550 | proto = tmp_ifproto_arr[tmp_ifproto_arr_idx]; | |
3551 | VERIFY(proto != NULL); | |
3552 | proto_media_event eventp = | |
3553 | (proto->proto_kpi == kProtoKPI_v1 ? | |
3554 | proto->kpi.v1.event : | |
3555 | proto->kpi.v2.event); | |
3556 | ||
3557 | if (eventp != NULL) { | |
3558 | eventp(ifp, proto->protocol_family, | |
3559 | event); | |
3560 | } | |
3561 | if_proto_free(proto); | |
3562 | } | |
3563 | ||
3564 | cleanup: | |
3565 | if (tmp_malloc) { | |
3566 | FREE(tmp_ifproto_arr, M_TEMP); | |
3567 | } | |
3568 | ||
6d2010ae A |
3569 | /* Pass the event to the interface */ |
3570 | if (ifp->if_event != NULL) | |
3571 | ifp->if_event(ifp, event); | |
3572 | ||
3573 | /* Release the io ref count */ | |
3574 | ifnet_decr_iorefcnt(ifp); | |
6d2010ae A |
3575 | done: |
3576 | return (kev_post_msg(event)); | |
1c79356b A |
3577 | } |
3578 | ||
2d21ac55 | 3579 | errno_t |
6d2010ae | 3580 | ifnet_event(ifnet_t ifp, struct kern_event_msg *event) |
1c79356b | 3581 | { |
91447636 | 3582 | struct kev_msg kev_msg; |
2d21ac55 A |
3583 | int result = 0; |
3584 | ||
6d2010ae A |
3585 | if (ifp == NULL || event == NULL) |
3586 | return (EINVAL); | |
1c79356b | 3587 | |
6d2010ae | 3588 | bzero(&kev_msg, sizeof (kev_msg)); |
91447636 A |
3589 | kev_msg.vendor_code = event->vendor_code; |
3590 | kev_msg.kev_class = event->kev_class; | |
3591 | kev_msg.kev_subclass = event->kev_subclass; | |
3592 | kev_msg.event_code = event->event_code; | |
3593 | kev_msg.dv[0].data_ptr = &event->event_data[0]; | |
3594 | kev_msg.dv[0].data_length = event->total_size - KEV_MSG_HEADER_SIZE; | |
3595 | kev_msg.dv[1].data_length = 0; | |
6d2010ae | 3596 | |
91447636 | 3597 | result = dlil_event_internal(ifp, &kev_msg); |
1c79356b | 3598 | |
6d2010ae | 3599 | return (result); |
91447636 | 3600 | } |
1c79356b | 3601 | |
2d21ac55 A |
3602 | #if CONFIG_MACF_NET |
3603 | #include <netinet/ip6.h> | |
3604 | #include <netinet/ip.h> | |
6d2010ae A |
3605 | static int |
3606 | dlil_get_socket_type(struct mbuf **mp, int family, int raw) | |
2d21ac55 A |
3607 | { |
3608 | struct mbuf *m; | |
3609 | struct ip *ip; | |
3610 | struct ip6_hdr *ip6; | |
3611 | int type = SOCK_RAW; | |
3612 | ||
3613 | if (!raw) { | |
3614 | switch (family) { | |
3615 | case PF_INET: | |
3616 | m = m_pullup(*mp, sizeof(struct ip)); | |
3617 | if (m == NULL) | |
3618 | break; | |
3619 | *mp = m; | |
3620 | ip = mtod(m, struct ip *); | |
3621 | if (ip->ip_p == IPPROTO_TCP) | |
3622 | type = SOCK_STREAM; | |
3623 | else if (ip->ip_p == IPPROTO_UDP) | |
3624 | type = SOCK_DGRAM; | |
3625 | break; | |
3626 | case PF_INET6: | |
3627 | m = m_pullup(*mp, sizeof(struct ip6_hdr)); | |
3628 | if (m == NULL) | |
3629 | break; | |
3630 | *mp = m; | |
3631 | ip6 = mtod(m, struct ip6_hdr *); | |
3632 | if (ip6->ip6_nxt == IPPROTO_TCP) | |
3633 | type = SOCK_STREAM; | |
3634 | else if (ip6->ip6_nxt == IPPROTO_UDP) | |
3635 | type = SOCK_DGRAM; | |
3636 | break; | |
3637 | } | |
3638 | } | |
3639 | ||
3640 | return (type); | |
3641 | } | |
3642 | #endif | |
3643 | ||
316670eb A |
3644 | /* |
3645 | * This is mostly called from the context of the DLIL input thread; | |
3646 | * because of that there is no need for atomic operations. | |
3647 | */ | |
3648 | static __inline void | |
3649 | ifp_inc_traffic_class_in(struct ifnet *ifp, struct mbuf *m) | |
d41d1dae | 3650 | { |
d41d1dae A |
3651 | if (!(m->m_flags & M_PKTHDR)) |
3652 | return; | |
3653 | ||
316670eb A |
3654 | switch (m_get_traffic_class(m)) { |
3655 | case MBUF_TC_BE: | |
3656 | ifp->if_tc.ifi_ibepackets++; | |
3657 | ifp->if_tc.ifi_ibebytes += m->m_pkthdr.len; | |
3658 | break; | |
3659 | case MBUF_TC_BK: | |
3660 | ifp->if_tc.ifi_ibkpackets++; | |
3661 | ifp->if_tc.ifi_ibkbytes += m->m_pkthdr.len; | |
3662 | break; | |
3663 | case MBUF_TC_VI: | |
3664 | ifp->if_tc.ifi_ivipackets++; | |
3665 | ifp->if_tc.ifi_ivibytes += m->m_pkthdr.len; | |
3666 | break; | |
3667 | case MBUF_TC_VO: | |
3668 | ifp->if_tc.ifi_ivopackets++; | |
3669 | ifp->if_tc.ifi_ivobytes += m->m_pkthdr.len; | |
3670 | break; | |
3671 | default: | |
3672 | break; | |
3673 | } | |
3674 | ||
3675 | if (mbuf_is_traffic_class_privileged(m)) { | |
3676 | ifp->if_tc.ifi_ipvpackets++; | |
3677 | ifp->if_tc.ifi_ipvbytes += m->m_pkthdr.len; | |
3678 | } | |
3679 | } | |
3680 | ||
3681 | /* | |
3682 | * This is called from DLIL output, hence multiple threads could end | |
3683 | * up modifying the statistics. We trade off acccuracy for performance | |
3684 | * by not using atomic operations here. | |
3685 | */ | |
3686 | static __inline void | |
3687 | ifp_inc_traffic_class_out(struct ifnet *ifp, struct mbuf *m) | |
3688 | { | |
3689 | if (!(m->m_flags & M_PKTHDR)) | |
3690 | return; | |
3691 | ||
3692 | switch (m_get_traffic_class(m)) { | |
3693 | case MBUF_TC_BE: | |
3694 | ifp->if_tc.ifi_obepackets++; | |
3695 | ifp->if_tc.ifi_obebytes += m->m_pkthdr.len; | |
3696 | break; | |
3697 | case MBUF_TC_BK: | |
3698 | ifp->if_tc.ifi_obkpackets++; | |
3699 | ifp->if_tc.ifi_obkbytes += m->m_pkthdr.len; | |
3700 | break; | |
3701 | case MBUF_TC_VI: | |
3702 | ifp->if_tc.ifi_ovipackets++; | |
3703 | ifp->if_tc.ifi_ovibytes += m->m_pkthdr.len; | |
3704 | break; | |
3705 | case MBUF_TC_VO: | |
3706 | ifp->if_tc.ifi_ovopackets++; | |
3707 | ifp->if_tc.ifi_ovobytes += m->m_pkthdr.len; | |
3708 | break; | |
3709 | default: | |
3710 | break; | |
3711 | } | |
3712 | ||
3713 | if (mbuf_is_traffic_class_privileged(m)) { | |
3714 | ifp->if_tc.ifi_opvpackets++; | |
3715 | ifp->if_tc.ifi_opvbytes += m->m_pkthdr.len; | |
d41d1dae | 3716 | } |
1c79356b A |
3717 | } |
3718 | ||
1c79356b | 3719 | /* |
91447636 A |
3720 | * dlil_output |
3721 | * | |
3722 | * Caller should have a lock on the protocol domain if the protocol | |
3723 | * doesn't support finer grained locking. In most cases, the lock | |
3724 | * will be held from the socket layer and won't be released until | |
3725 | * we return back to the socket layer. | |
3726 | * | |
3727 | * This does mean that we must take a protocol lock before we take | |
3728 | * an interface lock if we're going to take both. This makes sense | |
3729 | * because a protocol is likely to interact with an ifp while it | |
3730 | * is under the protocol lock. | |
316670eb A |
3731 | * |
3732 | * An advisory code will be returned if adv is not null. This | |
39236c6e | 3733 | * can be used to provide feedback about interface queues to the |
316670eb | 3734 | * application. |
1c79356b | 3735 | */ |
6d2010ae A |
3736 | errno_t |
3737 | dlil_output(ifnet_t ifp, protocol_family_t proto_family, mbuf_t packetlist, | |
316670eb | 3738 | void *route, const struct sockaddr *dest, int raw, struct flowadv *adv) |
6d2010ae A |
3739 | { |
3740 | char *frame_type = NULL; | |
3741 | char *dst_linkaddr = NULL; | |
3742 | int retval = 0; | |
3743 | char frame_type_buffer[MAX_FRAME_TYPE_SIZE * 4]; | |
3744 | char dst_linkaddr_buffer[MAX_LINKADDR * 4]; | |
3745 | struct if_proto *proto = NULL; | |
2d21ac55 A |
3746 | mbuf_t m; |
3747 | mbuf_t send_head = NULL; | |
3748 | mbuf_t *send_tail = &send_head; | |
6d2010ae | 3749 | int iorefcnt = 0; |
316670eb | 3750 | u_int32_t pre = 0, post = 0; |
39236c6e A |
3751 | u_int32_t fpkts = 0, fbytes = 0; |
3752 | int32_t flen = 0; | |
6d2010ae | 3753 | |
39236c6e | 3754 | KERNEL_DEBUG(DBG_FNC_DLIL_OUTPUT | DBG_FUNC_START, 0, 0, 0, 0, 0); |
6d2010ae A |
3755 | |
3756 | /* Get an io refcnt if the interface is attached to prevent ifnet_detach | |
3757 | * from happening while this operation is in progress */ | |
3758 | if (!ifnet_is_attached(ifp, 1)) { | |
3759 | retval = ENXIO; | |
3760 | goto cleanup; | |
3761 | } | |
3762 | iorefcnt = 1; | |
3763 | ||
3764 | /* update the driver's multicast filter, if needed */ | |
3765 | if (ifp->if_updatemcasts > 0 && if_mcasts_update(ifp) == 0) | |
3766 | ifp->if_updatemcasts = 0; | |
3767 | ||
3768 | frame_type = frame_type_buffer; | |
3769 | dst_linkaddr = dst_linkaddr_buffer; | |
3770 | ||
91447636 | 3771 | if (raw == 0) { |
6d2010ae A |
3772 | ifnet_lock_shared(ifp); |
3773 | /* callee holds a proto refcnt upon success */ | |
91447636 A |
3774 | proto = find_attached_proto(ifp, proto_family); |
3775 | if (proto == NULL) { | |
6d2010ae | 3776 | ifnet_lock_done(ifp); |
91447636 A |
3777 | retval = ENXIO; |
3778 | goto cleanup; | |
3779 | } | |
6d2010ae | 3780 | ifnet_lock_done(ifp); |
2d21ac55 | 3781 | } |
6d2010ae | 3782 | |
2d21ac55 A |
3783 | preout_again: |
3784 | if (packetlist == NULL) | |
3785 | goto cleanup; | |
6d2010ae | 3786 | |
2d21ac55 A |
3787 | m = packetlist; |
3788 | packetlist = packetlist->m_nextpkt; | |
3789 | m->m_nextpkt = NULL; | |
6d2010ae | 3790 | |
2d21ac55 | 3791 | if (raw == 0) { |
6d2010ae A |
3792 | proto_media_preout preoutp = (proto->proto_kpi == kProtoKPI_v1 ? |
3793 | proto->kpi.v1.pre_output : proto->kpi.v2.pre_output); | |
91447636 | 3794 | retval = 0; |
6d2010ae A |
3795 | if (preoutp != NULL) { |
3796 | retval = preoutp(ifp, proto_family, &m, dest, route, | |
3797 | frame_type, dst_linkaddr); | |
3798 | ||
3799 | if (retval != 0) { | |
3800 | if (retval == EJUSTRETURN) | |
3801 | goto preout_again; | |
3802 | m_freem(m); | |
3803 | goto cleanup; | |
91447636 | 3804 | } |
1c79356b | 3805 | } |
1c79356b | 3806 | } |
2d21ac55 A |
3807 | |
3808 | #if CONFIG_MACF_NET | |
3809 | retval = mac_ifnet_check_transmit(ifp, m, proto_family, | |
3810 | dlil_get_socket_type(&m, proto_family, raw)); | |
39236c6e | 3811 | if (retval != 0) { |
2d21ac55 A |
3812 | m_freem(m); |
3813 | goto cleanup; | |
3814 | } | |
3815 | #endif | |
3816 | ||
3817 | do { | |
6d2010ae | 3818 | #if CONFIG_DTRACE |
316670eb | 3819 | if (!raw && proto_family == PF_INET) { |
6d2010ae A |
3820 | struct ip *ip = mtod(m, struct ip*); |
3821 | DTRACE_IP6(send, struct mbuf *, m, struct inpcb *, NULL, | |
3822 | struct ip *, ip, struct ifnet *, ifp, | |
3823 | struct ip *, ip, struct ip6_hdr *, NULL); | |
3824 | ||
316670eb | 3825 | } else if (!raw && proto_family == PF_INET6) { |
6d2010ae A |
3826 | struct ip6_hdr *ip6 = mtod(m, struct ip6_hdr*); |
3827 | DTRACE_IP6(send, struct mbuf*, m, struct inpcb *, NULL, | |
3828 | struct ip6_hdr *, ip6, struct ifnet*, ifp, | |
3829 | struct ip*, NULL, struct ip6_hdr *, ip6); | |
3830 | } | |
3831 | #endif /* CONFIG_DTRACE */ | |
3832 | ||
39236c6e | 3833 | if (raw == 0 && ifp->if_framer != NULL) { |
7e4a7d39 A |
3834 | int rcvif_set = 0; |
3835 | ||
3836 | /* | |
3837 | * If this is a broadcast packet that needs to be | |
3838 | * looped back into the system, set the inbound ifp | |
3839 | * to that of the outbound ifp. This will allow | |
3840 | * us to determine that it is a legitimate packet | |
3841 | * for the system. Only set the ifp if it's not | |
3842 | * already set, just to be safe. | |
3843 | */ | |
3844 | if ((m->m_flags & (M_BCAST | M_LOOP)) && | |
3845 | m->m_pkthdr.rcvif == NULL) { | |
3846 | m->m_pkthdr.rcvif = ifp; | |
3847 | rcvif_set = 1; | |
3848 | } | |
3849 | ||
6d2010ae | 3850 | retval = ifp->if_framer(ifp, &m, dest, dst_linkaddr, |
39236c6e A |
3851 | frame_type, &pre, &post); |
3852 | if (retval != 0) { | |
6d2010ae | 3853 | if (retval != EJUSTRETURN) |
2d21ac55 | 3854 | m_freem(m); |
2d21ac55 | 3855 | goto next; |
91447636 | 3856 | } |
7e4a7d39 | 3857 | |
39236c6e A |
3858 | /* |
3859 | * For partial checksum offload, adjust the start | |
3860 | * and stuff offsets based on the prepended header. | |
3861 | */ | |
3862 | if ((m->m_pkthdr.csum_flags & | |
3863 | (CSUM_DATA_VALID | CSUM_PARTIAL)) == | |
3864 | (CSUM_DATA_VALID | CSUM_PARTIAL)) { | |
3865 | m->m_pkthdr.csum_tx_stuff += pre; | |
3866 | m->m_pkthdr.csum_tx_start += pre; | |
3867 | } | |
3868 | ||
3869 | if (hwcksum_dbg != 0 && !(ifp->if_flags & IFF_LOOPBACK)) | |
3870 | dlil_output_cksum_dbg(ifp, m, pre, | |
3871 | proto_family); | |
3872 | ||
7e4a7d39 A |
3873 | /* |
3874 | * Clear the ifp if it was set above, and to be | |
3875 | * safe, only if it is still the same as the | |
3876 | * outbound ifp we have in context. If it was | |
3877 | * looped back, then a copy of it was sent to the | |
3878 | * loopback interface with the rcvif set, and we | |
3879 | * are clearing the one that will go down to the | |
3880 | * layer below. | |
3881 | */ | |
3882 | if (rcvif_set && m->m_pkthdr.rcvif == ifp) | |
3883 | m->m_pkthdr.rcvif = NULL; | |
91447636 | 3884 | } |
6d2010ae A |
3885 | |
3886 | /* | |
2d21ac55 A |
3887 | * Let interface filters (if any) do their thing ... |
3888 | */ | |
3889 | /* Do not pass VLAN tagged packets to filters PR-3586856 */ | |
3890 | if ((m->m_pkthdr.csum_flags & CSUM_VLAN_TAG_VALID) == 0) { | |
6d2010ae A |
3891 | retval = dlil_interface_filters_output(ifp, |
3892 | &m, proto_family); | |
3893 | if (retval != 0) { | |
3894 | if (retval != EJUSTRETURN) | |
3895 | m_freem(m); | |
3896 | goto next; | |
1c79356b | 3897 | } |
1c79356b | 3898 | } |
b7266188 | 3899 | /* |
39236c6e A |
3900 | * Strip away M_PROTO1 bit prior to sending packet |
3901 | * to the driver as this field may be used by the driver | |
b7266188 A |
3902 | */ |
3903 | m->m_flags &= ~M_PROTO1; | |
3904 | ||
2d21ac55 A |
3905 | /* |
3906 | * If the underlying interface is not capable of handling a | |
3907 | * packet whose data portion spans across physically disjoint | |
3908 | * pages, we need to "normalize" the packet so that we pass | |
3909 | * down a chain of mbufs where each mbuf points to a span that | |
3910 | * resides in the system page boundary. If the packet does | |
3911 | * not cross page(s), the following is a no-op. | |
3912 | */ | |
3913 | if (!(ifp->if_hwassist & IFNET_MULTIPAGES)) { | |
3914 | if ((m = m_normalize(m)) == NULL) | |
3915 | goto next; | |
3916 | } | |
3917 | ||
6d2010ae A |
3918 | /* |
3919 | * If this is a TSO packet, make sure the interface still | |
3920 | * advertise TSO capability. | |
b0d623f7 | 3921 | */ |
39236c6e | 3922 | if (TSO_IPV4_NOTOK(ifp, m) || TSO_IPV6_NOTOK(ifp, m)) { |
6d2010ae A |
3923 | retval = EMSGSIZE; |
3924 | m_freem(m); | |
3925 | goto cleanup; | |
b0d623f7 A |
3926 | } |
3927 | ||
39236c6e A |
3928 | /* |
3929 | * If the packet service class is not background, | |
3930 | * update the timestamp to indicate recent activity | |
3931 | * on a foreground socket. | |
3932 | */ | |
3933 | if (!(m->m_pkthdr.pkt_flags & PKTF_SO_BACKGROUND) && | |
3934 | (m->m_pkthdr.pkt_flags & PKTF_FLOW_ID) && | |
3935 | m->m_pkthdr.pkt_flowsrc == FLOWSRC_INPCB) | |
3936 | ifp->if_fg_sendts = net_uptime(); | |
3937 | ||
3938 | ifp_inc_traffic_class_out(ifp, m); | |
3939 | pktap_output(ifp, proto_family, m, pre, post); | |
6d2010ae | 3940 | |
2d21ac55 A |
3941 | /* |
3942 | * Finally, call the driver. | |
3943 | */ | |
39236c6e A |
3944 | if (ifp->if_eflags & IFEF_SENDLIST) { |
3945 | if (m->m_pkthdr.pkt_flags & PKTF_FORWARDED) { | |
3946 | flen += (m_pktlen(m) - (pre + post)); | |
3947 | m->m_pkthdr.pkt_flags &= ~PKTF_FORWARDED; | |
3948 | } | |
2d21ac55 A |
3949 | *send_tail = m; |
3950 | send_tail = &m->m_nextpkt; | |
6d2010ae | 3951 | } else { |
39236c6e A |
3952 | if (m->m_pkthdr.pkt_flags & PKTF_FORWARDED) { |
3953 | flen = (m_pktlen(m) - (pre + post)); | |
3954 | m->m_pkthdr.pkt_flags &= ~PKTF_FORWARDED; | |
3955 | } else { | |
3956 | flen = 0; | |
3957 | } | |
6d2010ae | 3958 | KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT | DBG_FUNC_START, |
39236c6e | 3959 | 0, 0, 0, 0, 0); |
316670eb A |
3960 | retval = (*ifp->if_output)(ifp, m); |
3961 | if (retval == EQFULL || retval == EQSUSPENDED) { | |
3962 | if (adv != NULL && adv->code == FADV_SUCCESS) { | |
3963 | adv->code = (retval == EQFULL ? | |
3964 | FADV_FLOW_CONTROLLED : | |
3965 | FADV_SUSPENDED); | |
3966 | } | |
3967 | retval = 0; | |
3968 | } | |
39236c6e A |
3969 | if (retval == 0 && flen > 0) { |
3970 | fbytes += flen; | |
3971 | fpkts++; | |
3972 | } | |
3973 | if (retval != 0 && dlil_verbose) { | |
3974 | printf("%s: output error on %s retval = %d\n", | |
3975 | __func__, if_name(ifp), | |
6d2010ae | 3976 | retval); |
2d21ac55 | 3977 | } |
6d2010ae | 3978 | KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT | DBG_FUNC_END, |
39236c6e | 3979 | 0, 0, 0, 0, 0); |
2d21ac55 | 3980 | } |
39236c6e | 3981 | KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT | DBG_FUNC_END, 0, 0, 0, 0, 0); |
2d21ac55 A |
3982 | |
3983 | next: | |
3984 | m = packetlist; | |
39236c6e | 3985 | if (m != NULL) { |
2d21ac55 A |
3986 | packetlist = packetlist->m_nextpkt; |
3987 | m->m_nextpkt = NULL; | |
3988 | } | |
39236c6e | 3989 | } while (m != NULL); |
d41d1dae | 3990 | |
39236c6e A |
3991 | if (send_head != NULL) { |
3992 | VERIFY(ifp->if_eflags & IFEF_SENDLIST); | |
3993 | KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT | DBG_FUNC_START, | |
3994 | 0, 0, 0, 0, 0); | |
316670eb A |
3995 | retval = (*ifp->if_output)(ifp, send_head); |
3996 | if (retval == EQFULL || retval == EQSUSPENDED) { | |
3997 | if (adv != NULL) { | |
3998 | adv->code = (retval == EQFULL ? | |
3999 | FADV_FLOW_CONTROLLED : FADV_SUSPENDED); | |
4000 | } | |
4001 | retval = 0; | |
4002 | } | |
39236c6e A |
4003 | if (retval == 0 && flen > 0) { |
4004 | fbytes += flen; | |
4005 | fpkts++; | |
2d21ac55 | 4006 | } |
39236c6e A |
4007 | if (retval != 0 && dlil_verbose) { |
4008 | printf("%s: output error on %s retval = %d\n", | |
4009 | __func__, if_name(ifp), retval); | |
4010 | } | |
4011 | KERNEL_DEBUG(DBG_FNC_DLIL_IFOUT | DBG_FUNC_END, 0, 0, 0, 0, 0); | |
1c79356b | 4012 | } |
6d2010ae | 4013 | |
39236c6e | 4014 | KERNEL_DEBUG(DBG_FNC_DLIL_OUTPUT | DBG_FUNC_END, 0, 0, 0, 0, 0); |
1c79356b | 4015 | |
91447636 | 4016 | cleanup: |
39236c6e A |
4017 | if (fbytes > 0) |
4018 | ifp->if_fbytes += fbytes; | |
4019 | if (fpkts > 0) | |
4020 | ifp->if_fpackets += fpkts; | |
6d2010ae A |
4021 | if (proto != NULL) |
4022 | if_proto_free(proto); | |
4023 | if (packetlist) /* if any packets are left, clean up */ | |
2d21ac55 | 4024 | mbuf_freem_list(packetlist); |
91447636 A |
4025 | if (retval == EJUSTRETURN) |
4026 | retval = 0; | |
6d2010ae A |
4027 | if (iorefcnt == 1) |
4028 | ifnet_decr_iorefcnt(ifp); | |
4029 | ||
4030 | return (retval); | |
1c79356b A |
4031 | } |
4032 | ||
2d21ac55 | 4033 | errno_t |
6d2010ae A |
4034 | ifnet_ioctl(ifnet_t ifp, protocol_family_t proto_fam, u_long ioctl_code, |
4035 | void *ioctl_arg) | |
4036 | { | |
4037 | struct ifnet_filter *filter; | |
4038 | int retval = EOPNOTSUPP; | |
4039 | int result = 0; | |
4040 | ||
2d21ac55 | 4041 | if (ifp == NULL || ioctl_code == 0) |
6d2010ae A |
4042 | return (EINVAL); |
4043 | ||
4044 | /* Get an io ref count if the interface is attached */ | |
4045 | if (!ifnet_is_attached(ifp, 1)) | |
4046 | return (EOPNOTSUPP); | |
4047 | ||
91447636 A |
4048 | /* Run the interface filters first. |
4049 | * We want to run all filters before calling the protocol, | |
4050 | * interface family, or interface. | |
4051 | */ | |
6d2010ae A |
4052 | lck_mtx_lock_spin(&ifp->if_flt_lock); |
4053 | /* prevent filter list from changing in case we drop the lock */ | |
4054 | if_flt_monitor_busy(ifp); | |
91447636 | 4055 | TAILQ_FOREACH(filter, &ifp->if_flt_head, filt_next) { |
6d2010ae A |
4056 | if (filter->filt_ioctl != NULL && (filter->filt_protocol == 0 || |
4057 | filter->filt_protocol == proto_fam)) { | |
4058 | lck_mtx_unlock(&ifp->if_flt_lock); | |
4059 | ||
4060 | result = filter->filt_ioctl(filter->filt_cookie, ifp, | |
4061 | proto_fam, ioctl_code, ioctl_arg); | |
4062 | ||
4063 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
4064 | ||
91447636 A |
4065 | /* Only update retval if no one has handled the ioctl */ |
4066 | if (retval == EOPNOTSUPP || result == EJUSTRETURN) { | |
4067 | if (result == ENOTSUP) | |
4068 | result = EOPNOTSUPP; | |
4069 | retval = result; | |
6d2010ae A |
4070 | if (retval != 0 && retval != EOPNOTSUPP) { |
4071 | /* we're done with the filter list */ | |
4072 | if_flt_monitor_unbusy(ifp); | |
4073 | lck_mtx_unlock(&ifp->if_flt_lock); | |
91447636 A |
4074 | goto cleanup; |
4075 | } | |
4076 | } | |
4077 | } | |
4078 | } | |
6d2010ae A |
4079 | /* we're done with the filter list */ |
4080 | if_flt_monitor_unbusy(ifp); | |
4081 | lck_mtx_unlock(&ifp->if_flt_lock); | |
4082 | ||
91447636 | 4083 | /* Allow the protocol to handle the ioctl */ |
6d2010ae A |
4084 | if (proto_fam != 0) { |
4085 | struct if_proto *proto; | |
4086 | ||
4087 | /* callee holds a proto refcnt upon success */ | |
4088 | ifnet_lock_shared(ifp); | |
4089 | proto = find_attached_proto(ifp, proto_fam); | |
4090 | ifnet_lock_done(ifp); | |
4091 | if (proto != NULL) { | |
4092 | proto_media_ioctl ioctlp = | |
4093 | (proto->proto_kpi == kProtoKPI_v1 ? | |
4094 | proto->kpi.v1.ioctl : proto->kpi.v2.ioctl); | |
91447636 | 4095 | result = EOPNOTSUPP; |
6d2010ae A |
4096 | if (ioctlp != NULL) |
4097 | result = ioctlp(ifp, proto_fam, ioctl_code, | |
4098 | ioctl_arg); | |
4099 | if_proto_free(proto); | |
4100 | ||
91447636 A |
4101 | /* Only update retval if no one has handled the ioctl */ |
4102 | if (retval == EOPNOTSUPP || result == EJUSTRETURN) { | |
4103 | if (result == ENOTSUP) | |
4104 | result = EOPNOTSUPP; | |
4105 | retval = result; | |
6d2010ae | 4106 | if (retval && retval != EOPNOTSUPP) |
91447636 | 4107 | goto cleanup; |
91447636 A |
4108 | } |
4109 | } | |
4110 | } | |
6d2010ae | 4111 | |
91447636 | 4112 | /* retval is either 0 or EOPNOTSUPP */ |
6d2010ae | 4113 | |
91447636 A |
4114 | /* |
4115 | * Let the interface handle this ioctl. | |
4116 | * If it returns EOPNOTSUPP, ignore that, we may have | |
4117 | * already handled this in the protocol or family. | |
4118 | */ | |
6d2010ae | 4119 | if (ifp->if_ioctl) |
91447636 | 4120 | result = (*ifp->if_ioctl)(ifp, ioctl_code, ioctl_arg); |
6d2010ae | 4121 | |
91447636 A |
4122 | /* Only update retval if no one has handled the ioctl */ |
4123 | if (retval == EOPNOTSUPP || result == EJUSTRETURN) { | |
4124 | if (result == ENOTSUP) | |
4125 | result = EOPNOTSUPP; | |
4126 | retval = result; | |
4127 | if (retval && retval != EOPNOTSUPP) { | |
4128 | goto cleanup; | |
4129 | } | |
4130 | } | |
1c79356b | 4131 | |
6d2010ae | 4132 | cleanup: |
91447636 A |
4133 | if (retval == EJUSTRETURN) |
4134 | retval = 0; | |
6d2010ae A |
4135 | |
4136 | ifnet_decr_iorefcnt(ifp); | |
4137 | ||
4138 | return (retval); | |
91447636 | 4139 | } |
1c79356b | 4140 | |
91447636 | 4141 | __private_extern__ errno_t |
6d2010ae | 4142 | dlil_set_bpf_tap(ifnet_t ifp, bpf_tap_mode mode, bpf_packet_func callback) |
91447636 A |
4143 | { |
4144 | errno_t error = 0; | |
6d2010ae A |
4145 | |
4146 | ||
4147 | if (ifp->if_set_bpf_tap) { | |
4148 | /* Get an io reference on the interface if it is attached */ | |
4149 | if (!ifnet_is_attached(ifp, 1)) | |
4150 | return ENXIO; | |
91447636 | 4151 | error = ifp->if_set_bpf_tap(ifp, mode, callback); |
6d2010ae A |
4152 | ifnet_decr_iorefcnt(ifp); |
4153 | } | |
4154 | return (error); | |
1c79356b A |
4155 | } |
4156 | ||
2d21ac55 | 4157 | errno_t |
6d2010ae A |
4158 | dlil_resolve_multi(struct ifnet *ifp, const struct sockaddr *proto_addr, |
4159 | struct sockaddr *ll_addr, size_t ll_len) | |
1c79356b | 4160 | { |
91447636 A |
4161 | errno_t result = EOPNOTSUPP; |
4162 | struct if_proto *proto; | |
4163 | const struct sockaddr *verify; | |
2d21ac55 | 4164 | proto_media_resolve_multi resolvep; |
6d2010ae A |
4165 | |
4166 | if (!ifnet_is_attached(ifp, 1)) | |
4167 | return result; | |
4168 | ||
91447636 | 4169 | bzero(ll_addr, ll_len); |
6d2010ae A |
4170 | |
4171 | /* Call the protocol first; callee holds a proto refcnt upon success */ | |
4172 | ifnet_lock_shared(ifp); | |
91447636 | 4173 | proto = find_attached_proto(ifp, proto_addr->sa_family); |
6d2010ae | 4174 | ifnet_lock_done(ifp); |
2d21ac55 | 4175 | if (proto != NULL) { |
6d2010ae A |
4176 | resolvep = (proto->proto_kpi == kProtoKPI_v1 ? |
4177 | proto->kpi.v1.resolve_multi : proto->kpi.v2.resolve_multi); | |
2d21ac55 | 4178 | if (resolvep != NULL) |
6d2010ae | 4179 | result = resolvep(ifp, proto_addr, |
316670eb | 4180 | (struct sockaddr_dl*)(void *)ll_addr, ll_len); |
6d2010ae | 4181 | if_proto_free(proto); |
91447636 | 4182 | } |
6d2010ae | 4183 | |
91447636 A |
4184 | /* Let the interface verify the multicast address */ |
4185 | if ((result == EOPNOTSUPP || result == 0) && ifp->if_check_multi) { | |
4186 | if (result == 0) | |
4187 | verify = ll_addr; | |
4188 | else | |
4189 | verify = proto_addr; | |
4190 | result = ifp->if_check_multi(ifp, verify); | |
4191 | } | |
6d2010ae A |
4192 | |
4193 | ifnet_decr_iorefcnt(ifp); | |
4194 | return (result); | |
91447636 | 4195 | } |
1c79356b | 4196 | |
91447636 | 4197 | __private_extern__ errno_t |
6d2010ae A |
4198 | dlil_send_arp_internal(ifnet_t ifp, u_short arpop, |
4199 | const struct sockaddr_dl* sender_hw, const struct sockaddr* sender_proto, | |
4200 | const struct sockaddr_dl* target_hw, const struct sockaddr* target_proto) | |
91447636 A |
4201 | { |
4202 | struct if_proto *proto; | |
4203 | errno_t result = 0; | |
6d2010ae A |
4204 | |
4205 | /* callee holds a proto refcnt upon success */ | |
4206 | ifnet_lock_shared(ifp); | |
91447636 | 4207 | proto = find_attached_proto(ifp, target_proto->sa_family); |
6d2010ae | 4208 | ifnet_lock_done(ifp); |
2d21ac55 | 4209 | if (proto == NULL) { |
91447636 | 4210 | result = ENOTSUP; |
6d2010ae | 4211 | } else { |
2d21ac55 | 4212 | proto_media_send_arp arpp; |
6d2010ae A |
4213 | arpp = (proto->proto_kpi == kProtoKPI_v1 ? |
4214 | proto->kpi.v1.send_arp : proto->kpi.v2.send_arp); | |
39236c6e | 4215 | if (arpp == NULL) { |
2d21ac55 | 4216 | result = ENOTSUP; |
39236c6e A |
4217 | } else { |
4218 | switch (arpop) { | |
4219 | case ARPOP_REQUEST: | |
4220 | arpstat.txrequests++; | |
4221 | if (target_hw != NULL) | |
4222 | arpstat.txurequests++; | |
4223 | break; | |
4224 | case ARPOP_REPLY: | |
4225 | arpstat.txreplies++; | |
4226 | break; | |
4227 | } | |
6d2010ae A |
4228 | result = arpp(ifp, arpop, sender_hw, sender_proto, |
4229 | target_hw, target_proto); | |
39236c6e | 4230 | } |
6d2010ae | 4231 | if_proto_free(proto); |
91447636 | 4232 | } |
6d2010ae A |
4233 | |
4234 | return (result); | |
91447636 | 4235 | } |
1c79356b | 4236 | |
39236c6e A |
4237 | struct net_thread_marks { }; |
4238 | static const struct net_thread_marks net_thread_marks_base = { }; | |
4239 | ||
4240 | __private_extern__ const net_thread_marks_t net_thread_marks_none = | |
4241 | &net_thread_marks_base; | |
4242 | ||
4243 | __private_extern__ net_thread_marks_t | |
4244 | net_thread_marks_push(u_int32_t push) | |
316670eb | 4245 | { |
39236c6e A |
4246 | static const char *const base = (const void*)&net_thread_marks_base; |
4247 | u_int32_t pop = 0; | |
4248 | ||
4249 | if (push != 0) { | |
4250 | struct uthread *uth = get_bsdthread_info(current_thread()); | |
4251 | ||
4252 | pop = push & ~uth->uu_network_marks; | |
4253 | if (pop != 0) | |
4254 | uth->uu_network_marks |= pop; | |
4255 | } | |
4256 | ||
4257 | return ((net_thread_marks_t)&base[pop]); | |
316670eb A |
4258 | } |
4259 | ||
39236c6e A |
4260 | __private_extern__ net_thread_marks_t |
4261 | net_thread_unmarks_push(u_int32_t unpush) | |
316670eb | 4262 | { |
39236c6e A |
4263 | static const char *const base = (const void*)&net_thread_marks_base; |
4264 | u_int32_t unpop = 0; | |
4265 | ||
4266 | if (unpush != 0) { | |
4267 | struct uthread *uth = get_bsdthread_info(current_thread()); | |
316670eb | 4268 | |
39236c6e A |
4269 | unpop = unpush & uth->uu_network_marks; |
4270 | if (unpop != 0) | |
4271 | uth->uu_network_marks &= ~unpop; | |
4272 | } | |
4273 | ||
4274 | return ((net_thread_marks_t)&base[unpop]); | |
316670eb A |
4275 | } |
4276 | ||
4277 | __private_extern__ void | |
39236c6e | 4278 | net_thread_marks_pop(net_thread_marks_t popx) |
316670eb | 4279 | { |
39236c6e A |
4280 | static const char *const base = (const void*)&net_thread_marks_base; |
4281 | ptrdiff_t pop = (caddr_t)popx - (caddr_t)base; | |
316670eb | 4282 | |
39236c6e A |
4283 | if (pop != 0) { |
4284 | static const ptrdiff_t ones = (ptrdiff_t)(u_int32_t)~0U; | |
4285 | struct uthread *uth = get_bsdthread_info(current_thread()); | |
4286 | ||
4287 | VERIFY((pop & ones) == pop); | |
4288 | VERIFY((ptrdiff_t)(uth->uu_network_marks & pop) == pop); | |
4289 | uth->uu_network_marks &= ~pop; | |
4290 | } | |
4291 | } | |
4292 | ||
4293 | __private_extern__ void | |
4294 | net_thread_unmarks_pop(net_thread_marks_t unpopx) | |
4295 | { | |
4296 | static const char *const base = (const void*)&net_thread_marks_base; | |
4297 | ptrdiff_t unpop = (caddr_t)unpopx - (caddr_t)base; | |
4298 | ||
4299 | if (unpop != 0) { | |
4300 | static const ptrdiff_t ones = (ptrdiff_t)(u_int32_t)~0U; | |
4301 | struct uthread *uth = get_bsdthread_info(current_thread()); | |
4302 | ||
4303 | VERIFY((unpop & ones) == unpop); | |
4304 | VERIFY((ptrdiff_t)(uth->uu_network_marks & unpop) == 0); | |
4305 | uth->uu_network_marks |= unpop; | |
4306 | } | |
4307 | } | |
4308 | ||
4309 | __private_extern__ u_int32_t | |
4310 | net_thread_is_marked(u_int32_t check) | |
4311 | { | |
4312 | if (check != 0) { | |
4313 | struct uthread *uth = get_bsdthread_info(current_thread()); | |
4314 | return (uth->uu_network_marks & check); | |
4315 | } | |
4316 | else | |
4317 | return (0); | |
4318 | } | |
4319 | ||
4320 | __private_extern__ u_int32_t | |
4321 | net_thread_is_unmarked(u_int32_t check) | |
4322 | { | |
4323 | if (check != 0) { | |
4324 | struct uthread *uth = get_bsdthread_info(current_thread()); | |
4325 | return (~uth->uu_network_marks & check); | |
4326 | } | |
4327 | else | |
4328 | return (0); | |
316670eb A |
4329 | } |
4330 | ||
2d21ac55 A |
4331 | static __inline__ int |
4332 | _is_announcement(const struct sockaddr_in * sender_sin, | |
6d2010ae | 4333 | const struct sockaddr_in * target_sin) |
2d21ac55 A |
4334 | { |
4335 | if (sender_sin == NULL) { | |
6d2010ae | 4336 | return (FALSE); |
2d21ac55 A |
4337 | } |
4338 | return (sender_sin->sin_addr.s_addr == target_sin->sin_addr.s_addr); | |
4339 | } | |
4340 | ||
91447636 | 4341 | __private_extern__ errno_t |
6d2010ae A |
4342 | dlil_send_arp(ifnet_t ifp, u_short arpop, const struct sockaddr_dl* sender_hw, |
4343 | const struct sockaddr* sender_proto, const struct sockaddr_dl* target_hw, | |
316670eb | 4344 | const struct sockaddr* target_proto0, u_int32_t rtflags) |
91447636 A |
4345 | { |
4346 | errno_t result = 0; | |
2d21ac55 A |
4347 | const struct sockaddr_in * sender_sin; |
4348 | const struct sockaddr_in * target_sin; | |
316670eb A |
4349 | struct sockaddr_inarp target_proto_sinarp; |
4350 | struct sockaddr *target_proto = (void *)(uintptr_t)target_proto0; | |
6d2010ae A |
4351 | |
4352 | if (target_proto == NULL || (sender_proto != NULL && | |
4353 | sender_proto->sa_family != target_proto->sa_family)) | |
4354 | return (EINVAL); | |
4355 | ||
316670eb A |
4356 | /* |
4357 | * If the target is a (default) router, provide that | |
4358 | * information to the send_arp callback routine. | |
4359 | */ | |
4360 | if (rtflags & RTF_ROUTER) { | |
4361 | bcopy(target_proto, &target_proto_sinarp, | |
4362 | sizeof (struct sockaddr_in)); | |
4363 | target_proto_sinarp.sin_other |= SIN_ROUTER; | |
4364 | target_proto = (struct sockaddr *)&target_proto_sinarp; | |
4365 | } | |
4366 | ||
91447636 A |
4367 | /* |
4368 | * If this is an ARP request and the target IP is IPv4LL, | |
2d21ac55 A |
4369 | * send the request on all interfaces. The exception is |
4370 | * an announcement, which must only appear on the specific | |
4371 | * interface. | |
91447636 | 4372 | */ |
316670eb A |
4373 | sender_sin = (struct sockaddr_in *)(void *)(uintptr_t)sender_proto; |
4374 | target_sin = (struct sockaddr_in *)(void *)(uintptr_t)target_proto; | |
6d2010ae A |
4375 | if (target_proto->sa_family == AF_INET && |
4376 | IN_LINKLOCAL(ntohl(target_sin->sin_addr.s_addr)) && | |
4377 | ipv4_ll_arp_aware != 0 && arpop == ARPOP_REQUEST && | |
4378 | !_is_announcement(target_sin, sender_sin)) { | |
91447636 A |
4379 | ifnet_t *ifp_list; |
4380 | u_int32_t count; | |
4381 | u_int32_t ifp_on; | |
6d2010ae | 4382 | |
91447636 A |
4383 | result = ENOTSUP; |
4384 | ||
4385 | if (ifnet_list_get(IFNET_FAMILY_ANY, &ifp_list, &count) == 0) { | |
4386 | for (ifp_on = 0; ifp_on < count; ifp_on++) { | |
6d2010ae A |
4387 | errno_t new_result; |
4388 | ifaddr_t source_hw = NULL; | |
4389 | ifaddr_t source_ip = NULL; | |
4390 | struct sockaddr_in source_ip_copy; | |
4391 | struct ifnet *cur_ifp = ifp_list[ifp_on]; | |
4392 | ||
91447636 | 4393 | /* |
6d2010ae A |
4394 | * Only arp on interfaces marked for IPv4LL |
4395 | * ARPing. This may mean that we don't ARP on | |
4396 | * the interface the subnet route points to. | |
91447636 | 4397 | */ |
6d2010ae | 4398 | if (!(cur_ifp->if_eflags & IFEF_ARPLL)) |
91447636 | 4399 | continue; |
b0d623f7 | 4400 | |
91447636 | 4401 | /* Find the source IP address */ |
6d2010ae A |
4402 | ifnet_lock_shared(cur_ifp); |
4403 | source_hw = cur_ifp->if_lladdr; | |
4404 | TAILQ_FOREACH(source_ip, &cur_ifp->if_addrhead, | |
4405 | ifa_link) { | |
4406 | IFA_LOCK(source_ip); | |
4407 | if (source_ip->ifa_addr != NULL && | |
4408 | source_ip->ifa_addr->sa_family == | |
4409 | AF_INET) { | |
4410 | /* Copy the source IP address */ | |
4411 | source_ip_copy = | |
4412 | *(struct sockaddr_in *) | |
316670eb | 4413 | (void *)source_ip->ifa_addr; |
6d2010ae | 4414 | IFA_UNLOCK(source_ip); |
91447636 A |
4415 | break; |
4416 | } | |
6d2010ae | 4417 | IFA_UNLOCK(source_ip); |
91447636 | 4418 | } |
6d2010ae | 4419 | |
91447636 A |
4420 | /* No IP Source, don't arp */ |
4421 | if (source_ip == NULL) { | |
6d2010ae | 4422 | ifnet_lock_done(cur_ifp); |
91447636 A |
4423 | continue; |
4424 | } | |
6d2010ae A |
4425 | |
4426 | IFA_ADDREF(source_hw); | |
4427 | ifnet_lock_done(cur_ifp); | |
4428 | ||
91447636 | 4429 | /* Send the ARP */ |
6d2010ae | 4430 | new_result = dlil_send_arp_internal(cur_ifp, |
316670eb A |
4431 | arpop, (struct sockaddr_dl *)(void *) |
4432 | source_hw->ifa_addr, | |
6d2010ae A |
4433 | (struct sockaddr *)&source_ip_copy, NULL, |
4434 | target_proto); | |
b0d623f7 | 4435 | |
6d2010ae | 4436 | IFA_REMREF(source_hw); |
91447636 A |
4437 | if (result == ENOTSUP) { |
4438 | result = new_result; | |
4439 | } | |
4440 | } | |
6d2010ae | 4441 | ifnet_list_free(ifp_list); |
91447636 | 4442 | } |
6d2010ae A |
4443 | } else { |
4444 | result = dlil_send_arp_internal(ifp, arpop, sender_hw, | |
4445 | sender_proto, target_hw, target_proto); | |
91447636 | 4446 | } |
6d2010ae A |
4447 | |
4448 | return (result); | |
91447636 | 4449 | } |
1c79356b | 4450 | |
6d2010ae A |
4451 | /* |
4452 | * Caller must hold ifnet head lock. | |
4453 | */ | |
4454 | static int | |
4455 | ifnet_lookup(struct ifnet *ifp) | |
91447636 | 4456 | { |
6d2010ae A |
4457 | struct ifnet *_ifp; |
4458 | ||
4459 | lck_rw_assert(&ifnet_head_lock, LCK_RW_ASSERT_HELD); | |
4460 | TAILQ_FOREACH(_ifp, &ifnet_head, if_link) { | |
4461 | if (_ifp == ifp) | |
91447636 | 4462 | break; |
6d2010ae A |
4463 | } |
4464 | return (_ifp != NULL); | |
91447636 | 4465 | } |
6d2010ae A |
4466 | /* |
4467 | * Caller has to pass a non-zero refio argument to get a | |
4468 | * IO reference count. This will prevent ifnet_detach from | |
4469 | * being called when there are outstanding io reference counts. | |
91447636 | 4470 | */ |
6d2010ae A |
4471 | int |
4472 | ifnet_is_attached(struct ifnet *ifp, int refio) | |
4473 | { | |
4474 | int ret; | |
4475 | ||
4476 | lck_mtx_lock_spin(&ifp->if_ref_lock); | |
4477 | if ((ret = ((ifp->if_refflags & (IFRF_ATTACHED | IFRF_DETACHING)) == | |
4478 | IFRF_ATTACHED))) { | |
4479 | if (refio > 0) | |
4480 | ifp->if_refio++; | |
4481 | } | |
4482 | lck_mtx_unlock(&ifp->if_ref_lock); | |
4483 | ||
4484 | return (ret); | |
4485 | } | |
4486 | ||
4487 | void | |
4488 | ifnet_decr_iorefcnt(struct ifnet *ifp) | |
4489 | { | |
4490 | lck_mtx_lock_spin(&ifp->if_ref_lock); | |
4491 | VERIFY(ifp->if_refio > 0); | |
4492 | VERIFY((ifp->if_refflags & (IFRF_ATTACHED | IFRF_DETACHING)) != 0); | |
4493 | ifp->if_refio--; | |
4494 | ||
4495 | /* if there are no more outstanding io references, wakeup the | |
4496 | * ifnet_detach thread if detaching flag is set. | |
4497 | */ | |
4498 | if (ifp->if_refio == 0 && | |
4499 | (ifp->if_refflags & IFRF_DETACHING) != 0) { | |
6d2010ae | 4500 | wakeup(&(ifp->if_refio)); |
91447636 | 4501 | } |
6d2010ae A |
4502 | lck_mtx_unlock(&ifp->if_ref_lock); |
4503 | } | |
b0d623f7 | 4504 | |
6d2010ae A |
4505 | static void |
4506 | dlil_if_trace(struct dlil_ifnet *dl_if, int refhold) | |
4507 | { | |
4508 | struct dlil_ifnet_dbg *dl_if_dbg = (struct dlil_ifnet_dbg *)dl_if; | |
4509 | ctrace_t *tr; | |
4510 | u_int32_t idx; | |
4511 | u_int16_t *cnt; | |
1c79356b | 4512 | |
6d2010ae A |
4513 | if (!(dl_if->dl_if_flags & DLIF_DEBUG)) { |
4514 | panic("%s: dl_if %p has no debug structure", __func__, dl_if); | |
4515 | /* NOTREACHED */ | |
4516 | } | |
4517 | ||
4518 | if (refhold) { | |
4519 | cnt = &dl_if_dbg->dldbg_if_refhold_cnt; | |
4520 | tr = dl_if_dbg->dldbg_if_refhold; | |
4521 | } else { | |
4522 | cnt = &dl_if_dbg->dldbg_if_refrele_cnt; | |
4523 | tr = dl_if_dbg->dldbg_if_refrele; | |
4524 | } | |
4525 | ||
4526 | idx = atomic_add_16_ov(cnt, 1) % IF_REF_TRACE_HIST_SIZE; | |
4527 | ctrace_record(&tr[idx]); | |
91447636 | 4528 | } |
1c79356b | 4529 | |
6d2010ae A |
4530 | errno_t |
4531 | dlil_if_ref(struct ifnet *ifp) | |
4532 | { | |
4533 | struct dlil_ifnet *dl_if = (struct dlil_ifnet *)ifp; | |
4534 | ||
4535 | if (dl_if == NULL) | |
4536 | return (EINVAL); | |
4537 | ||
4538 | lck_mtx_lock_spin(&dl_if->dl_if_lock); | |
4539 | ++dl_if->dl_if_refcnt; | |
4540 | if (dl_if->dl_if_refcnt == 0) { | |
4541 | panic("%s: wraparound refcnt for ifp=%p", __func__, ifp); | |
4542 | /* NOTREACHED */ | |
4543 | } | |
4544 | if (dl_if->dl_if_trace != NULL) | |
4545 | (*dl_if->dl_if_trace)(dl_if, TRUE); | |
4546 | lck_mtx_unlock(&dl_if->dl_if_lock); | |
4547 | ||
4548 | return (0); | |
91447636 | 4549 | } |
1c79356b | 4550 | |
6d2010ae A |
4551 | errno_t |
4552 | dlil_if_free(struct ifnet *ifp) | |
4553 | { | |
4554 | struct dlil_ifnet *dl_if = (struct dlil_ifnet *)ifp; | |
4555 | ||
4556 | if (dl_if == NULL) | |
4557 | return (EINVAL); | |
4558 | ||
4559 | lck_mtx_lock_spin(&dl_if->dl_if_lock); | |
4560 | if (dl_if->dl_if_refcnt == 0) { | |
4561 | panic("%s: negative refcnt for ifp=%p", __func__, ifp); | |
4562 | /* NOTREACHED */ | |
4563 | } | |
4564 | --dl_if->dl_if_refcnt; | |
4565 | if (dl_if->dl_if_trace != NULL) | |
4566 | (*dl_if->dl_if_trace)(dl_if, FALSE); | |
4567 | lck_mtx_unlock(&dl_if->dl_if_lock); | |
4568 | ||
4569 | return (0); | |
4570 | } | |
1c79356b | 4571 | |
2d21ac55 | 4572 | static errno_t |
6d2010ae A |
4573 | dlil_attach_protocol_internal(struct if_proto *proto, |
4574 | const struct ifnet_demux_desc *demux_list, u_int32_t demux_count) | |
91447636 | 4575 | { |
6d2010ae | 4576 | struct kev_dl_proto_data ev_pr_data; |
91447636 A |
4577 | struct ifnet *ifp = proto->ifp; |
4578 | int retval = 0; | |
b0d623f7 | 4579 | u_int32_t hash_value = proto_hash_value(proto->protocol_family); |
6d2010ae A |
4580 | struct if_proto *prev_proto; |
4581 | struct if_proto *_proto; | |
4582 | ||
4583 | /* callee holds a proto refcnt upon success */ | |
4584 | ifnet_lock_exclusive(ifp); | |
4585 | _proto = find_attached_proto(ifp, proto->protocol_family); | |
4586 | if (_proto != NULL) { | |
91447636 | 4587 | ifnet_lock_done(ifp); |
6d2010ae A |
4588 | if_proto_free(_proto); |
4589 | return (EEXIST); | |
91447636 | 4590 | } |
6d2010ae | 4591 | |
91447636 A |
4592 | /* |
4593 | * Call family module add_proto routine so it can refine the | |
4594 | * demux descriptors as it wishes. | |
4595 | */ | |
6d2010ae A |
4596 | retval = ifp->if_add_proto(ifp, proto->protocol_family, demux_list, |
4597 | demux_count); | |
91447636 | 4598 | if (retval) { |
6d2010ae A |
4599 | ifnet_lock_done(ifp); |
4600 | return (retval); | |
91447636 | 4601 | } |
6d2010ae | 4602 | |
91447636 A |
4603 | /* |
4604 | * Insert the protocol in the hash | |
4605 | */ | |
6d2010ae A |
4606 | prev_proto = SLIST_FIRST(&ifp->if_proto_hash[hash_value]); |
4607 | while (prev_proto != NULL && SLIST_NEXT(prev_proto, next_hash) != NULL) | |
4608 | prev_proto = SLIST_NEXT(prev_proto, next_hash); | |
4609 | if (prev_proto) | |
4610 | SLIST_INSERT_AFTER(prev_proto, proto, next_hash); | |
4611 | else | |
4612 | SLIST_INSERT_HEAD(&ifp->if_proto_hash[hash_value], | |
4613 | proto, next_hash); | |
4614 | ||
4615 | /* hold a proto refcnt for attach */ | |
4616 | if_proto_ref(proto); | |
1c79356b | 4617 | |
91447636 | 4618 | /* |
6d2010ae A |
4619 | * The reserved field carries the number of protocol still attached |
4620 | * (subject to change) | |
91447636 | 4621 | */ |
91447636 A |
4622 | ev_pr_data.proto_family = proto->protocol_family; |
4623 | ev_pr_data.proto_remaining_count = dlil_ifp_proto_count(ifp); | |
6d2010ae A |
4624 | ifnet_lock_done(ifp); |
4625 | ||
4626 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_PROTO_ATTACHED, | |
4627 | (struct net_event_data *)&ev_pr_data, | |
4628 | sizeof (struct kev_dl_proto_data)); | |
4629 | return (retval); | |
91447636 | 4630 | } |
0b4e3aa0 | 4631 | |
2d21ac55 A |
4632 | errno_t |
4633 | ifnet_attach_protocol(ifnet_t ifp, protocol_family_t protocol, | |
6d2010ae | 4634 | const struct ifnet_attach_proto_param *proto_details) |
91447636 A |
4635 | { |
4636 | int retval = 0; | |
4637 | struct if_proto *ifproto = NULL; | |
6d2010ae A |
4638 | |
4639 | ifnet_head_lock_shared(); | |
4640 | if (ifp == NULL || protocol == 0 || proto_details == NULL) { | |
4641 | retval = EINVAL; | |
4642 | goto end; | |
4643 | } | |
4644 | /* Check that the interface is in the global list */ | |
4645 | if (!ifnet_lookup(ifp)) { | |
4646 | retval = ENXIO; | |
4647 | goto end; | |
4648 | } | |
4649 | ||
4650 | ifproto = zalloc(dlif_proto_zone); | |
4651 | if (ifproto == NULL) { | |
91447636 A |
4652 | retval = ENOMEM; |
4653 | goto end; | |
4654 | } | |
6d2010ae A |
4655 | bzero(ifproto, dlif_proto_size); |
4656 | ||
4657 | /* refcnt held above during lookup */ | |
91447636 A |
4658 | ifproto->ifp = ifp; |
4659 | ifproto->protocol_family = protocol; | |
4660 | ifproto->proto_kpi = kProtoKPI_v1; | |
4661 | ifproto->kpi.v1.input = proto_details->input; | |
4662 | ifproto->kpi.v1.pre_output = proto_details->pre_output; | |
4663 | ifproto->kpi.v1.event = proto_details->event; | |
4664 | ifproto->kpi.v1.ioctl = proto_details->ioctl; | |
4665 | ifproto->kpi.v1.detached = proto_details->detached; | |
4666 | ifproto->kpi.v1.resolve_multi = proto_details->resolve; | |
4667 | ifproto->kpi.v1.send_arp = proto_details->send_arp; | |
6d2010ae | 4668 | |
2d21ac55 | 4669 | retval = dlil_attach_protocol_internal(ifproto, |
6d2010ae A |
4670 | proto_details->demux_list, proto_details->demux_count); |
4671 | ||
4672 | if (dlil_verbose) { | |
39236c6e A |
4673 | printf("%s: attached v1 protocol %d\n", if_name(ifp), |
4674 | protocol); | |
6d2010ae A |
4675 | } |
4676 | ||
9bccf70c | 4677 | end: |
6d2010ae | 4678 | if (retval != 0 && retval != EEXIST && ifp != NULL) { |
39236c6e A |
4679 | DLIL_PRINTF("%s: failed to attach v1 protocol %d (err=%d)\n", |
4680 | if_name(ifp), protocol, retval); | |
6d2010ae A |
4681 | } |
4682 | ifnet_head_done(); | |
4683 | if (retval != 0 && ifproto != NULL) | |
4684 | zfree(dlif_proto_zone, ifproto); | |
4685 | return (retval); | |
1c79356b A |
4686 | } |
4687 | ||
2d21ac55 A |
4688 | errno_t |
4689 | ifnet_attach_protocol_v2(ifnet_t ifp, protocol_family_t protocol, | |
6d2010ae | 4690 | const struct ifnet_attach_proto_param_v2 *proto_details) |
91447636 | 4691 | { |
2d21ac55 | 4692 | int retval = 0; |
91447636 | 4693 | struct if_proto *ifproto = NULL; |
6d2010ae A |
4694 | |
4695 | ifnet_head_lock_shared(); | |
4696 | if (ifp == NULL || protocol == 0 || proto_details == NULL) { | |
4697 | retval = EINVAL; | |
4698 | goto end; | |
4699 | } | |
4700 | /* Check that the interface is in the global list */ | |
4701 | if (!ifnet_lookup(ifp)) { | |
4702 | retval = ENXIO; | |
4703 | goto end; | |
4704 | } | |
4705 | ||
4706 | ifproto = zalloc(dlif_proto_zone); | |
4707 | if (ifproto == NULL) { | |
91447636 A |
4708 | retval = ENOMEM; |
4709 | goto end; | |
4710 | } | |
2d21ac55 | 4711 | bzero(ifproto, sizeof(*ifproto)); |
6d2010ae A |
4712 | |
4713 | /* refcnt held above during lookup */ | |
2d21ac55 A |
4714 | ifproto->ifp = ifp; |
4715 | ifproto->protocol_family = protocol; | |
4716 | ifproto->proto_kpi = kProtoKPI_v2; | |
4717 | ifproto->kpi.v2.input = proto_details->input; | |
4718 | ifproto->kpi.v2.pre_output = proto_details->pre_output; | |
4719 | ifproto->kpi.v2.event = proto_details->event; | |
4720 | ifproto->kpi.v2.ioctl = proto_details->ioctl; | |
4721 | ifproto->kpi.v2.detached = proto_details->detached; | |
4722 | ifproto->kpi.v2.resolve_multi = proto_details->resolve; | |
4723 | ifproto->kpi.v2.send_arp = proto_details->send_arp; | |
1c79356b | 4724 | |
6d2010ae A |
4725 | retval = dlil_attach_protocol_internal(ifproto, |
4726 | proto_details->demux_list, proto_details->demux_count); | |
1c79356b | 4727 | |
6d2010ae | 4728 | if (dlil_verbose) { |
39236c6e A |
4729 | printf("%s: attached v2 protocol %d\n", if_name(ifp), |
4730 | protocol); | |
91447636 | 4731 | } |
6d2010ae A |
4732 | |
4733 | end: | |
4734 | if (retval != 0 && retval != EEXIST && ifp != NULL) { | |
39236c6e A |
4735 | DLIL_PRINTF("%s: failed to attach v2 protocol %d (err=%d)\n", |
4736 | if_name(ifp), protocol, retval); | |
2d21ac55 | 4737 | } |
6d2010ae A |
4738 | ifnet_head_done(); |
4739 | if (retval != 0 && ifproto != NULL) | |
4740 | zfree(dlif_proto_zone, ifproto); | |
4741 | return (retval); | |
91447636 | 4742 | } |
1c79356b | 4743 | |
2d21ac55 A |
4744 | errno_t |
4745 | ifnet_detach_protocol(ifnet_t ifp, protocol_family_t proto_family) | |
91447636 A |
4746 | { |
4747 | struct if_proto *proto = NULL; | |
4748 | int retval = 0; | |
6d2010ae A |
4749 | |
4750 | if (ifp == NULL || proto_family == 0) { | |
4751 | retval = EINVAL; | |
91447636 A |
4752 | goto end; |
4753 | } | |
6d2010ae A |
4754 | |
4755 | ifnet_lock_exclusive(ifp); | |
4756 | /* callee holds a proto refcnt upon success */ | |
91447636 | 4757 | proto = find_attached_proto(ifp, proto_family); |
91447636 A |
4758 | if (proto == NULL) { |
4759 | retval = ENXIO; | |
6d2010ae | 4760 | ifnet_lock_done(ifp); |
91447636 A |
4761 | goto end; |
4762 | } | |
6d2010ae A |
4763 | |
4764 | /* call family module del_proto */ | |
91447636 A |
4765 | if (ifp->if_del_proto) |
4766 | ifp->if_del_proto(ifp, proto->protocol_family); | |
1c79356b | 4767 | |
6d2010ae A |
4768 | SLIST_REMOVE(&ifp->if_proto_hash[proto_hash_value(proto_family)], |
4769 | proto, if_proto, next_hash); | |
4770 | ||
4771 | if (proto->proto_kpi == kProtoKPI_v1) { | |
4772 | proto->kpi.v1.input = ifproto_media_input_v1; | |
4773 | proto->kpi.v1.pre_output= ifproto_media_preout; | |
4774 | proto->kpi.v1.event = ifproto_media_event; | |
4775 | proto->kpi.v1.ioctl = ifproto_media_ioctl; | |
4776 | proto->kpi.v1.resolve_multi = ifproto_media_resolve_multi; | |
4777 | proto->kpi.v1.send_arp = ifproto_media_send_arp; | |
4778 | } else { | |
4779 | proto->kpi.v2.input = ifproto_media_input_v2; | |
4780 | proto->kpi.v2.pre_output = ifproto_media_preout; | |
4781 | proto->kpi.v2.event = ifproto_media_event; | |
4782 | proto->kpi.v2.ioctl = ifproto_media_ioctl; | |
4783 | proto->kpi.v2.resolve_multi = ifproto_media_resolve_multi; | |
4784 | proto->kpi.v2.send_arp = ifproto_media_send_arp; | |
4785 | } | |
4786 | proto->detached = 1; | |
4787 | ifnet_lock_done(ifp); | |
4788 | ||
4789 | if (dlil_verbose) { | |
39236c6e A |
4790 | printf("%s: detached %s protocol %d\n", if_name(ifp), |
4791 | (proto->proto_kpi == kProtoKPI_v1) ? | |
6d2010ae A |
4792 | "v1" : "v2", proto_family); |
4793 | } | |
4794 | ||
4795 | /* release proto refcnt held during protocol attach */ | |
4796 | if_proto_free(proto); | |
91447636 A |
4797 | |
4798 | /* | |
6d2010ae A |
4799 | * Release proto refcnt held during lookup; the rest of |
4800 | * protocol detach steps will happen when the last proto | |
4801 | * reference is released. | |
91447636 | 4802 | */ |
6d2010ae A |
4803 | if_proto_free(proto); |
4804 | ||
91447636 | 4805 | end: |
6d2010ae | 4806 | return (retval); |
91447636 | 4807 | } |
1c79356b | 4808 | |
6d2010ae A |
4809 | |
4810 | static errno_t | |
4811 | ifproto_media_input_v1(struct ifnet *ifp, protocol_family_t protocol, | |
4812 | struct mbuf *packet, char *header) | |
91447636 | 4813 | { |
6d2010ae A |
4814 | #pragma unused(ifp, protocol, packet, header) |
4815 | return (ENXIO); | |
4816 | } | |
4817 | ||
4818 | static errno_t | |
4819 | ifproto_media_input_v2(struct ifnet *ifp, protocol_family_t protocol, | |
4820 | struct mbuf *packet) | |
4821 | { | |
4822 | #pragma unused(ifp, protocol, packet) | |
4823 | return (ENXIO); | |
4824 | ||
4825 | } | |
4826 | ||
4827 | static errno_t | |
4828 | ifproto_media_preout(struct ifnet *ifp, protocol_family_t protocol, | |
4829 | mbuf_t *packet, const struct sockaddr *dest, void *route, char *frame_type, | |
4830 | char *link_layer_dest) | |
4831 | { | |
4832 | #pragma unused(ifp, protocol, packet, dest, route, frame_type, link_layer_dest) | |
4833 | return (ENXIO); | |
9bccf70c | 4834 | |
91447636 | 4835 | } |
9bccf70c | 4836 | |
91447636 | 4837 | static void |
6d2010ae A |
4838 | ifproto_media_event(struct ifnet *ifp, protocol_family_t protocol, |
4839 | const struct kev_msg *event) | |
4840 | { | |
4841 | #pragma unused(ifp, protocol, event) | |
4842 | } | |
4843 | ||
4844 | static errno_t | |
4845 | ifproto_media_ioctl(struct ifnet *ifp, protocol_family_t protocol, | |
4846 | unsigned long command, void *argument) | |
4847 | { | |
4848 | #pragma unused(ifp, protocol, command, argument) | |
4849 | return (ENXIO); | |
4850 | } | |
4851 | ||
4852 | static errno_t | |
4853 | ifproto_media_resolve_multi(ifnet_t ifp, const struct sockaddr *proto_addr, | |
4854 | struct sockaddr_dl *out_ll, size_t ll_len) | |
4855 | { | |
4856 | #pragma unused(ifp, proto_addr, out_ll, ll_len) | |
4857 | return (ENXIO); | |
4858 | } | |
4859 | ||
4860 | static errno_t | |
4861 | ifproto_media_send_arp(struct ifnet *ifp, u_short arpop, | |
4862 | const struct sockaddr_dl *sender_hw, const struct sockaddr *sender_proto, | |
4863 | const struct sockaddr_dl *target_hw, const struct sockaddr *target_proto) | |
4864 | { | |
4865 | #pragma unused(ifp, arpop, sender_hw, sender_proto, target_hw, target_proto) | |
4866 | return (ENXIO); | |
91447636 | 4867 | } |
9bccf70c | 4868 | |
91447636 A |
4869 | extern int if_next_index(void); |
4870 | ||
2d21ac55 | 4871 | errno_t |
6d2010ae | 4872 | ifnet_attach(ifnet_t ifp, const struct sockaddr_dl *ll_addr) |
91447636 | 4873 | { |
91447636 | 4874 | struct ifnet *tmp_if; |
6d2010ae A |
4875 | struct ifaddr *ifa; |
4876 | struct if_data_internal if_data_saved; | |
4877 | struct dlil_ifnet *dl_if = (struct dlil_ifnet *)ifp; | |
316670eb A |
4878 | struct dlil_threading_info *dl_inp; |
4879 | u_int32_t sflags = 0; | |
4880 | int err; | |
1c79356b | 4881 | |
6d2010ae A |
4882 | if (ifp == NULL) |
4883 | return (EINVAL); | |
4884 | ||
7ddcb079 A |
4885 | /* |
4886 | * Serialize ifnet attach using dlil_ifnet_lock, in order to | |
4887 | * prevent the interface from being configured while it is | |
4888 | * embryonic, as ifnet_head_lock is dropped and reacquired | |
4889 | * below prior to marking the ifnet with IFRF_ATTACHED. | |
4890 | */ | |
4891 | dlil_if_lock(); | |
6d2010ae | 4892 | ifnet_head_lock_exclusive(); |
91447636 A |
4893 | /* Verify we aren't already on the list */ |
4894 | TAILQ_FOREACH(tmp_if, &ifnet_head, if_link) { | |
4895 | if (tmp_if == ifp) { | |
4896 | ifnet_head_done(); | |
7ddcb079 | 4897 | dlil_if_unlock(); |
6d2010ae | 4898 | return (EEXIST); |
91447636 A |
4899 | } |
4900 | } | |
0b4e3aa0 | 4901 | |
6d2010ae A |
4902 | lck_mtx_lock_spin(&ifp->if_ref_lock); |
4903 | if (ifp->if_refflags & IFRF_ATTACHED) { | |
316670eb | 4904 | panic_plain("%s: flags mismatch (attached set) ifp=%p", |
6d2010ae A |
4905 | __func__, ifp); |
4906 | /* NOTREACHED */ | |
91447636 | 4907 | } |
6d2010ae | 4908 | lck_mtx_unlock(&ifp->if_ref_lock); |
1c79356b | 4909 | |
6d2010ae | 4910 | ifnet_lock_exclusive(ifp); |
b0d623f7 | 4911 | |
6d2010ae A |
4912 | /* Sanity check */ |
4913 | VERIFY(ifp->if_detaching_link.tqe_next == NULL); | |
4914 | VERIFY(ifp->if_detaching_link.tqe_prev == NULL); | |
4915 | ||
4916 | if (ll_addr != NULL) { | |
4917 | if (ifp->if_addrlen == 0) { | |
4918 | ifp->if_addrlen = ll_addr->sdl_alen; | |
4919 | } else if (ll_addr->sdl_alen != ifp->if_addrlen) { | |
4920 | ifnet_lock_done(ifp); | |
4921 | ifnet_head_done(); | |
7ddcb079 | 4922 | dlil_if_unlock(); |
6d2010ae | 4923 | return (EINVAL); |
b0d623f7 A |
4924 | } |
4925 | } | |
4926 | ||
91447636 | 4927 | /* |
b0d623f7 | 4928 | * Allow interfaces without protocol families to attach |
91447636 A |
4929 | * only if they have the necessary fields filled out. |
4930 | */ | |
6d2010ae A |
4931 | if (ifp->if_add_proto == NULL || ifp->if_del_proto == NULL) { |
4932 | DLIL_PRINTF("%s: Attempt to attach interface without " | |
4933 | "family module - %d\n", __func__, ifp->if_family); | |
4934 | ifnet_lock_done(ifp); | |
4935 | ifnet_head_done(); | |
7ddcb079 | 4936 | dlil_if_unlock(); |
6d2010ae | 4937 | return (ENODEV); |
1c79356b A |
4938 | } |
4939 | ||
6d2010ae A |
4940 | /* Allocate protocol hash table */ |
4941 | VERIFY(ifp->if_proto_hash == NULL); | |
4942 | ifp->if_proto_hash = zalloc(dlif_phash_zone); | |
4943 | if (ifp->if_proto_hash == NULL) { | |
4944 | ifnet_lock_done(ifp); | |
4945 | ifnet_head_done(); | |
7ddcb079 | 4946 | dlil_if_unlock(); |
6d2010ae A |
4947 | return (ENOBUFS); |
4948 | } | |
4949 | bzero(ifp->if_proto_hash, dlif_phash_size); | |
91447636 | 4950 | |
6d2010ae A |
4951 | lck_mtx_lock_spin(&ifp->if_flt_lock); |
4952 | VERIFY(TAILQ_EMPTY(&ifp->if_flt_head)); | |
91447636 | 4953 | TAILQ_INIT(&ifp->if_flt_head); |
6d2010ae A |
4954 | VERIFY(ifp->if_flt_busy == 0); |
4955 | VERIFY(ifp->if_flt_waiters == 0); | |
4956 | lck_mtx_unlock(&ifp->if_flt_lock); | |
4957 | ||
4958 | VERIFY(TAILQ_EMPTY(&ifp->if_prefixhead)); | |
4959 | TAILQ_INIT(&ifp->if_prefixhead); | |
4960 | ||
4961 | if (!(dl_if->dl_if_flags & DLIF_REUSE)) { | |
4962 | VERIFY(LIST_EMPTY(&ifp->if_multiaddrs)); | |
91447636 | 4963 | LIST_INIT(&ifp->if_multiaddrs); |
6d2010ae | 4964 | } |
1c79356b | 4965 | |
6d2010ae A |
4966 | VERIFY(ifp->if_allhostsinm == NULL); |
4967 | VERIFY(TAILQ_EMPTY(&ifp->if_addrhead)); | |
4968 | TAILQ_INIT(&ifp->if_addrhead); | |
4969 | ||
6d2010ae A |
4970 | if (ifp->if_index == 0) { |
4971 | int idx = if_next_index(); | |
4972 | ||
4973 | if (idx == -1) { | |
4974 | ifp->if_index = 0; | |
4975 | ifnet_lock_done(ifp); | |
4976 | ifnet_head_done(); | |
7ddcb079 | 4977 | dlil_if_unlock(); |
6d2010ae | 4978 | return (ENOBUFS); |
1c79356b | 4979 | } |
6d2010ae A |
4980 | ifp->if_index = idx; |
4981 | } | |
4982 | /* There should not be anything occupying this slot */ | |
4983 | VERIFY(ifindex2ifnet[ifp->if_index] == NULL); | |
4984 | ||
4985 | /* allocate (if needed) and initialize a link address */ | |
4986 | VERIFY(!(dl_if->dl_if_flags & DLIF_REUSE) || ifp->if_lladdr != NULL); | |
4987 | ifa = dlil_alloc_lladdr(ifp, ll_addr); | |
4988 | if (ifa == NULL) { | |
4989 | ifnet_lock_done(ifp); | |
4990 | ifnet_head_done(); | |
7ddcb079 | 4991 | dlil_if_unlock(); |
6d2010ae A |
4992 | return (ENOBUFS); |
4993 | } | |
4994 | ||
4995 | VERIFY(ifnet_addrs[ifp->if_index - 1] == NULL); | |
4996 | ifnet_addrs[ifp->if_index - 1] = ifa; | |
4997 | ||
4998 | /* make this address the first on the list */ | |
4999 | IFA_LOCK(ifa); | |
5000 | /* hold a reference for ifnet_addrs[] */ | |
5001 | IFA_ADDREF_LOCKED(ifa); | |
5002 | /* if_attach_link_ifa() holds a reference for ifa_link */ | |
5003 | if_attach_link_ifa(ifp, ifa); | |
5004 | IFA_UNLOCK(ifa); | |
5005 | ||
2d21ac55 | 5006 | #if CONFIG_MACF_NET |
6d2010ae | 5007 | mac_ifnet_label_associate(ifp); |
2d21ac55 | 5008 | #endif |
2d21ac55 | 5009 | |
6d2010ae A |
5010 | TAILQ_INSERT_TAIL(&ifnet_head, ifp, if_link); |
5011 | ifindex2ifnet[ifp->if_index] = ifp; | |
2d21ac55 | 5012 | |
6d2010ae A |
5013 | /* Hold a reference to the underlying dlil_ifnet */ |
5014 | ifnet_reference(ifp); | |
5015 | ||
316670eb A |
5016 | /* Clear stats (save and restore other fields that we care) */ |
5017 | if_data_saved = ifp->if_data; | |
5018 | bzero(&ifp->if_data, sizeof (ifp->if_data)); | |
5019 | ifp->if_data.ifi_type = if_data_saved.ifi_type; | |
5020 | ifp->if_data.ifi_typelen = if_data_saved.ifi_typelen; | |
5021 | ifp->if_data.ifi_physical = if_data_saved.ifi_physical; | |
5022 | ifp->if_data.ifi_addrlen = if_data_saved.ifi_addrlen; | |
5023 | ifp->if_data.ifi_hdrlen = if_data_saved.ifi_hdrlen; | |
5024 | ifp->if_data.ifi_mtu = if_data_saved.ifi_mtu; | |
5025 | ifp->if_data.ifi_baudrate = if_data_saved.ifi_baudrate; | |
5026 | ifp->if_data.ifi_hwassist = if_data_saved.ifi_hwassist; | |
5027 | ifp->if_data.ifi_tso_v4_mtu = if_data_saved.ifi_tso_v4_mtu; | |
5028 | ifp->if_data.ifi_tso_v6_mtu = if_data_saved.ifi_tso_v6_mtu; | |
5029 | ifnet_touch_lastchange(ifp); | |
5030 | ||
5031 | VERIFY(ifp->if_output_sched_model == IFNET_SCHED_MODEL_NORMAL || | |
5032 | ifp->if_output_sched_model == IFNET_SCHED_MODEL_DRIVER_MANAGED); | |
5033 | ||
5034 | /* By default, use SFB and enable flow advisory */ | |
5035 | sflags = PKTSCHEDF_QALG_SFB; | |
5036 | if (if_flowadv) | |
5037 | sflags |= PKTSCHEDF_QALG_FLOWCTL; | |
5038 | ||
fe8ab488 A |
5039 | if (if_delaybased_queue) |
5040 | sflags |= PKTSCHEDF_QALG_DELAYBASED; | |
5041 | ||
316670eb A |
5042 | /* Initialize transmit queue(s) */ |
5043 | err = ifclassq_setup(ifp, sflags, (dl_if->dl_if_flags & DLIF_REUSE)); | |
5044 | if (err != 0) { | |
5045 | panic_plain("%s: ifp=%p couldn't initialize transmit queue; " | |
5046 | "err=%d", __func__, ifp, err); | |
5047 | /* NOTREACHED */ | |
5048 | } | |
5049 | ||
5050 | /* Sanity checks on the input thread storage */ | |
5051 | dl_inp = &dl_if->dl_if_inpstorage; | |
5052 | bzero(&dl_inp->stats, sizeof (dl_inp->stats)); | |
5053 | VERIFY(dl_inp->input_waiting == 0); | |
5054 | VERIFY(dl_inp->wtot == 0); | |
5055 | VERIFY(dl_inp->ifp == NULL); | |
5056 | VERIFY(qhead(&dl_inp->rcvq_pkts) == NULL && qempty(&dl_inp->rcvq_pkts)); | |
5057 | VERIFY(qlimit(&dl_inp->rcvq_pkts) == 0); | |
5058 | VERIFY(!dl_inp->net_affinity); | |
5059 | VERIFY(ifp->if_inp == NULL); | |
5060 | VERIFY(dl_inp->input_thr == THREAD_NULL); | |
5061 | VERIFY(dl_inp->wloop_thr == THREAD_NULL); | |
5062 | VERIFY(dl_inp->poll_thr == THREAD_NULL); | |
5063 | VERIFY(dl_inp->tag == 0); | |
5064 | VERIFY(dl_inp->mode == IFNET_MODEL_INPUT_POLL_OFF); | |
5065 | bzero(&dl_inp->tstats, sizeof (dl_inp->tstats)); | |
5066 | bzero(&dl_inp->pstats, sizeof (dl_inp->pstats)); | |
5067 | bzero(&dl_inp->sstats, sizeof (dl_inp->sstats)); | |
5068 | #if IFNET_INPUT_SANITY_CHK | |
5069 | VERIFY(dl_inp->input_mbuf_cnt == 0); | |
5070 | #endif /* IFNET_INPUT_SANITY_CHK */ | |
5071 | ||
5072 | /* | |
5073 | * A specific DLIL input thread is created per Ethernet/cellular | |
5074 | * interface or for an interface which supports opportunistic | |
5075 | * input polling. Pseudo interfaces or other types of interfaces | |
5076 | * use the main input thread instead. | |
5077 | */ | |
5078 | if ((net_rxpoll && (ifp->if_eflags & IFEF_RXPOLL)) || | |
5079 | ifp->if_type == IFT_ETHER || ifp->if_type == IFT_CELLULAR) { | |
5080 | ifp->if_inp = dl_inp; | |
5081 | err = dlil_create_input_thread(ifp, ifp->if_inp); | |
5082 | if (err != 0) { | |
5083 | panic_plain("%s: ifp=%p couldn't get an input thread; " | |
5084 | "err=%d", __func__, ifp, err); | |
5085 | /* NOTREACHED */ | |
5086 | } | |
5087 | } | |
5088 | ||
6d2010ae | 5089 | /* |
39236c6e A |
5090 | * If the driver supports the new transmit model, calculate flow hash |
5091 | * and create a workloop starter thread to invoke the if_start callback | |
5092 | * where the packets may be dequeued and transmitted. | |
6d2010ae | 5093 | */ |
316670eb | 5094 | if (ifp->if_eflags & IFEF_TXSTART) { |
39236c6e A |
5095 | ifp->if_flowhash = ifnet_calc_flowhash(ifp); |
5096 | VERIFY(ifp->if_flowhash != 0); | |
5097 | ||
316670eb A |
5098 | VERIFY(ifp->if_start != NULL); |
5099 | VERIFY(ifp->if_start_thread == THREAD_NULL); | |
5100 | ||
5101 | ifnet_set_start_cycle(ifp, NULL); | |
5102 | ifp->if_start_active = 0; | |
5103 | ifp->if_start_req = 0; | |
39236c6e | 5104 | ifp->if_start_flags = 0; |
316670eb A |
5105 | if ((err = kernel_thread_start(ifnet_start_thread_fn, ifp, |
5106 | &ifp->if_start_thread)) != KERN_SUCCESS) { | |
5107 | panic_plain("%s: ifp=%p couldn't get a start thread; " | |
5108 | "err=%d", __func__, ifp, err); | |
6d2010ae A |
5109 | /* NOTREACHED */ |
5110 | } | |
316670eb A |
5111 | ml_thread_policy(ifp->if_start_thread, MACHINE_GROUP, |
5112 | (MACHINE_NETWORK_GROUP|MACHINE_NETWORK_WORKLOOP)); | |
39236c6e A |
5113 | } else { |
5114 | ifp->if_flowhash = 0; | |
316670eb A |
5115 | } |
5116 | ||
5117 | /* | |
5118 | * If the driver supports the new receive model, create a poller | |
5119 | * thread to invoke if_input_poll callback where the packets may | |
5120 | * be dequeued from the driver and processed for reception. | |
5121 | */ | |
5122 | if (ifp->if_eflags & IFEF_RXPOLL) { | |
5123 | VERIFY(ifp->if_input_poll != NULL); | |
5124 | VERIFY(ifp->if_input_ctl != NULL); | |
5125 | VERIFY(ifp->if_poll_thread == THREAD_NULL); | |
5126 | ||
5127 | ifnet_set_poll_cycle(ifp, NULL); | |
5128 | ifp->if_poll_update = 0; | |
5129 | ifp->if_poll_active = 0; | |
5130 | ifp->if_poll_req = 0; | |
5131 | if ((err = kernel_thread_start(ifnet_poll_thread_fn, ifp, | |
5132 | &ifp->if_poll_thread)) != KERN_SUCCESS) { | |
5133 | panic_plain("%s: ifp=%p couldn't get a poll thread; " | |
6d2010ae A |
5134 | "err=%d", __func__, ifp, err); |
5135 | /* NOTREACHED */ | |
5136 | } | |
316670eb A |
5137 | ml_thread_policy(ifp->if_poll_thread, MACHINE_GROUP, |
5138 | (MACHINE_NETWORK_GROUP|MACHINE_NETWORK_WORKLOOP)); | |
91447636 | 5139 | } |
6d2010ae | 5140 | |
316670eb A |
5141 | VERIFY(ifp->if_desc.ifd_maxlen == IF_DESCSIZE); |
5142 | VERIFY(ifp->if_desc.ifd_len == 0); | |
5143 | VERIFY(ifp->if_desc.ifd_desc != NULL); | |
6d2010ae A |
5144 | |
5145 | /* Record attach PC stacktrace */ | |
5146 | ctrace_record(&((struct dlil_ifnet *)ifp)->dl_if_attach); | |
5147 | ||
5148 | ifp->if_updatemcasts = 0; | |
5149 | if (!LIST_EMPTY(&ifp->if_multiaddrs)) { | |
5150 | struct ifmultiaddr *ifma; | |
5151 | LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { | |
5152 | IFMA_LOCK(ifma); | |
5153 | if (ifma->ifma_addr->sa_family == AF_LINK || | |
5154 | ifma->ifma_addr->sa_family == AF_UNSPEC) | |
5155 | ifp->if_updatemcasts++; | |
5156 | IFMA_UNLOCK(ifma); | |
5157 | } | |
5158 | ||
39236c6e A |
5159 | printf("%s: attached with %d suspended link-layer multicast " |
5160 | "membership(s)\n", if_name(ifp), | |
6d2010ae A |
5161 | ifp->if_updatemcasts); |
5162 | } | |
5163 | ||
39236c6e A |
5164 | /* Clear logging parameters */ |
5165 | bzero(&ifp->if_log, sizeof (ifp->if_log)); | |
5166 | ifp->if_fg_sendts = 0; | |
5167 | ||
5168 | VERIFY(ifp->if_delegated.ifp == NULL); | |
5169 | VERIFY(ifp->if_delegated.type == 0); | |
5170 | VERIFY(ifp->if_delegated.family == 0); | |
5171 | VERIFY(ifp->if_delegated.subfamily == 0); | |
fe8ab488 | 5172 | VERIFY(ifp->if_delegated.expensive == 0); |
39236c6e | 5173 | |
0c530ab8 | 5174 | ifnet_lock_done(ifp); |
b0d623f7 | 5175 | ifnet_head_done(); |
6d2010ae A |
5176 | |
5177 | lck_mtx_lock(&ifp->if_cached_route_lock); | |
5178 | /* Enable forwarding cached route */ | |
5179 | ifp->if_fwd_cacheok = 1; | |
5180 | /* Clean up any existing cached routes */ | |
39236c6e | 5181 | ROUTE_RELEASE(&ifp->if_fwd_route); |
6d2010ae | 5182 | bzero(&ifp->if_fwd_route, sizeof (ifp->if_fwd_route)); |
39236c6e | 5183 | ROUTE_RELEASE(&ifp->if_src_route); |
6d2010ae | 5184 | bzero(&ifp->if_src_route, sizeof (ifp->if_src_route)); |
39236c6e | 5185 | ROUTE_RELEASE(&ifp->if_src_route6); |
6d2010ae A |
5186 | bzero(&ifp->if_src_route6, sizeof (ifp->if_src_route6)); |
5187 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
5188 | ||
5189 | ifnet_llreach_ifattach(ifp, (dl_if->dl_if_flags & DLIF_REUSE)); | |
5190 | ||
b0d623f7 | 5191 | /* |
6d2010ae A |
5192 | * Allocate and attach IGMPv3/MLDv2 interface specific variables |
5193 | * and trees; do this before the ifnet is marked as attached. | |
5194 | * The ifnet keeps the reference to the info structures even after | |
5195 | * the ifnet is detached, since the network-layer records still | |
5196 | * refer to the info structures even after that. This also | |
5197 | * makes it possible for them to still function after the ifnet | |
5198 | * is recycled or reattached. | |
b0d623f7 | 5199 | */ |
6d2010ae A |
5200 | #if INET |
5201 | if (IGMP_IFINFO(ifp) == NULL) { | |
5202 | IGMP_IFINFO(ifp) = igmp_domifattach(ifp, M_WAITOK); | |
5203 | VERIFY(IGMP_IFINFO(ifp) != NULL); | |
5204 | } else { | |
5205 | VERIFY(IGMP_IFINFO(ifp)->igi_ifp == ifp); | |
5206 | igmp_domifreattach(IGMP_IFINFO(ifp)); | |
5207 | } | |
5208 | #endif /* INET */ | |
5209 | #if INET6 | |
5210 | if (MLD_IFINFO(ifp) == NULL) { | |
5211 | MLD_IFINFO(ifp) = mld_domifattach(ifp, M_WAITOK); | |
5212 | VERIFY(MLD_IFINFO(ifp) != NULL); | |
5213 | } else { | |
5214 | VERIFY(MLD_IFINFO(ifp)->mli_ifp == ifp); | |
5215 | mld_domifreattach(MLD_IFINFO(ifp)); | |
5216 | } | |
5217 | #endif /* INET6 */ | |
b0d623f7 | 5218 | |
39236c6e A |
5219 | VERIFY(ifp->if_data_threshold == 0); |
5220 | ||
6d2010ae A |
5221 | /* |
5222 | * Finally, mark this ifnet as attached. | |
5223 | */ | |
5224 | lck_mtx_lock(rnh_lock); | |
5225 | ifnet_lock_exclusive(ifp); | |
316670eb A |
5226 | /* Initialize Link Quality Metric (loopback [lo0] is always good) */ |
5227 | ifp->if_lqm = (ifp == lo_ifp) ? IFNET_LQM_THRESH_GOOD : | |
5228 | IFNET_LQM_THRESH_UNKNOWN; | |
6d2010ae A |
5229 | lck_mtx_lock_spin(&ifp->if_ref_lock); |
5230 | ifp->if_refflags = IFRF_ATTACHED; | |
5231 | lck_mtx_unlock(&ifp->if_ref_lock); | |
d1ecb069 | 5232 | if (net_rtref) { |
6d2010ae A |
5233 | /* boot-args override; enable idle notification */ |
5234 | (void) ifnet_set_idle_flags_locked(ifp, IFRF_IDLE_NOTIFY, | |
d1ecb069 | 5235 | IFRF_IDLE_NOTIFY); |
6d2010ae A |
5236 | } else { |
5237 | /* apply previous request(s) to set the idle flags, if any */ | |
5238 | (void) ifnet_set_idle_flags_locked(ifp, ifp->if_idle_new_flags, | |
5239 | ifp->if_idle_new_flags_mask); | |
5240 | ||
d1ecb069 | 5241 | } |
6d2010ae A |
5242 | ifnet_lock_done(ifp); |
5243 | lck_mtx_unlock(rnh_lock); | |
7ddcb079 | 5244 | dlil_if_unlock(); |
6d2010ae A |
5245 | |
5246 | #if PF | |
5247 | /* | |
5248 | * Attach packet filter to this interface, if enabled. | |
5249 | */ | |
5250 | pf_ifnet_hook(ifp, 1); | |
5251 | #endif /* PF */ | |
d1ecb069 | 5252 | |
2d21ac55 | 5253 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_IF_ATTACHED, NULL, 0); |
1c79356b | 5254 | |
6d2010ae | 5255 | if (dlil_verbose) { |
39236c6e | 5256 | printf("%s: attached%s\n", if_name(ifp), |
6d2010ae A |
5257 | (dl_if->dl_if_flags & DLIF_REUSE) ? " (recycled)" : ""); |
5258 | } | |
5259 | ||
5260 | return (0); | |
5261 | } | |
5262 | ||
5263 | /* | |
5264 | * Prepare the storage for the first/permanent link address, which must | |
5265 | * must have the same lifetime as the ifnet itself. Although the link | |
5266 | * address gets removed from if_addrhead and ifnet_addrs[] at detach time, | |
5267 | * its location in memory must never change as it may still be referred | |
5268 | * to by some parts of the system afterwards (unfortunate implementation | |
5269 | * artifacts inherited from BSD.) | |
5270 | * | |
5271 | * Caller must hold ifnet lock as writer. | |
5272 | */ | |
5273 | static struct ifaddr * | |
5274 | dlil_alloc_lladdr(struct ifnet *ifp, const struct sockaddr_dl *ll_addr) | |
5275 | { | |
5276 | struct ifaddr *ifa, *oifa; | |
5277 | struct sockaddr_dl *asdl, *msdl; | |
5278 | char workbuf[IFNAMSIZ*2]; | |
5279 | int namelen, masklen, socksize; | |
5280 | struct dlil_ifnet *dl_if = (struct dlil_ifnet *)ifp; | |
5281 | ||
5282 | ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_EXCLUSIVE); | |
5283 | VERIFY(ll_addr == NULL || ll_addr->sdl_alen == ifp->if_addrlen); | |
5284 | ||
39236c6e A |
5285 | namelen = snprintf(workbuf, sizeof (workbuf), "%s", |
5286 | if_name(ifp)); | |
6d2010ae A |
5287 | masklen = offsetof(struct sockaddr_dl, sdl_data[0]) + namelen; |
5288 | socksize = masklen + ifp->if_addrlen; | |
5289 | #define ROUNDUP(a) (1 + (((a) - 1) | (sizeof (u_int32_t) - 1))) | |
5290 | if ((u_int32_t)socksize < sizeof (struct sockaddr_dl)) | |
5291 | socksize = sizeof(struct sockaddr_dl); | |
5292 | socksize = ROUNDUP(socksize); | |
5293 | #undef ROUNDUP | |
5294 | ||
5295 | ifa = ifp->if_lladdr; | |
5296 | if (socksize > DLIL_SDLMAXLEN || | |
5297 | (ifa != NULL && ifa != &dl_if->dl_if_lladdr.ifa)) { | |
5298 | /* | |
5299 | * Rare, but in the event that the link address requires | |
5300 | * more storage space than DLIL_SDLMAXLEN, allocate the | |
5301 | * largest possible storages for address and mask, such | |
5302 | * that we can reuse the same space when if_addrlen grows. | |
5303 | * This same space will be used when if_addrlen shrinks. | |
5304 | */ | |
5305 | if (ifa == NULL || ifa == &dl_if->dl_if_lladdr.ifa) { | |
5306 | int ifasize = sizeof (*ifa) + 2 * SOCK_MAXADDRLEN; | |
5307 | ifa = _MALLOC(ifasize, M_IFADDR, M_WAITOK | M_ZERO); | |
5308 | if (ifa == NULL) | |
5309 | return (NULL); | |
5310 | ifa_lock_init(ifa); | |
5311 | /* Don't set IFD_ALLOC, as this is permanent */ | |
5312 | ifa->ifa_debug = IFD_LINK; | |
5313 | } | |
5314 | IFA_LOCK(ifa); | |
5315 | /* address and mask sockaddr_dl locations */ | |
5316 | asdl = (struct sockaddr_dl *)(ifa + 1); | |
5317 | bzero(asdl, SOCK_MAXADDRLEN); | |
316670eb A |
5318 | msdl = (struct sockaddr_dl *)(void *) |
5319 | ((char *)asdl + SOCK_MAXADDRLEN); | |
6d2010ae A |
5320 | bzero(msdl, SOCK_MAXADDRLEN); |
5321 | } else { | |
5322 | VERIFY(ifa == NULL || ifa == &dl_if->dl_if_lladdr.ifa); | |
5323 | /* | |
5324 | * Use the storage areas for address and mask within the | |
5325 | * dlil_ifnet structure. This is the most common case. | |
5326 | */ | |
5327 | if (ifa == NULL) { | |
5328 | ifa = &dl_if->dl_if_lladdr.ifa; | |
5329 | ifa_lock_init(ifa); | |
5330 | /* Don't set IFD_ALLOC, as this is permanent */ | |
5331 | ifa->ifa_debug = IFD_LINK; | |
5332 | } | |
5333 | IFA_LOCK(ifa); | |
5334 | /* address and mask sockaddr_dl locations */ | |
316670eb | 5335 | asdl = (struct sockaddr_dl *)(void *)&dl_if->dl_if_lladdr.asdl; |
6d2010ae | 5336 | bzero(asdl, sizeof (dl_if->dl_if_lladdr.asdl)); |
316670eb | 5337 | msdl = (struct sockaddr_dl *)(void *)&dl_if->dl_if_lladdr.msdl; |
6d2010ae A |
5338 | bzero(msdl, sizeof (dl_if->dl_if_lladdr.msdl)); |
5339 | } | |
5340 | ||
5341 | /* hold a permanent reference for the ifnet itself */ | |
5342 | IFA_ADDREF_LOCKED(ifa); | |
5343 | oifa = ifp->if_lladdr; | |
5344 | ifp->if_lladdr = ifa; | |
5345 | ||
5346 | VERIFY(ifa->ifa_debug == IFD_LINK); | |
5347 | ifa->ifa_ifp = ifp; | |
5348 | ifa->ifa_rtrequest = link_rtrequest; | |
5349 | ifa->ifa_addr = (struct sockaddr *)asdl; | |
5350 | asdl->sdl_len = socksize; | |
5351 | asdl->sdl_family = AF_LINK; | |
5352 | bcopy(workbuf, asdl->sdl_data, namelen); | |
5353 | asdl->sdl_nlen = namelen; | |
5354 | asdl->sdl_index = ifp->if_index; | |
5355 | asdl->sdl_type = ifp->if_type; | |
5356 | if (ll_addr != NULL) { | |
5357 | asdl->sdl_alen = ll_addr->sdl_alen; | |
5358 | bcopy(CONST_LLADDR(ll_addr), LLADDR(asdl), asdl->sdl_alen); | |
5359 | } else { | |
5360 | asdl->sdl_alen = 0; | |
5361 | } | |
5362 | ifa->ifa_netmask = (struct sockaddr*)msdl; | |
5363 | msdl->sdl_len = masklen; | |
5364 | while (namelen != 0) | |
5365 | msdl->sdl_data[--namelen] = 0xff; | |
5366 | IFA_UNLOCK(ifa); | |
5367 | ||
5368 | if (oifa != NULL) | |
5369 | IFA_REMREF(oifa); | |
5370 | ||
5371 | return (ifa); | |
5372 | } | |
5373 | ||
5374 | static void | |
5375 | if_purgeaddrs(struct ifnet *ifp) | |
5376 | { | |
5377 | #if INET | |
5378 | in_purgeaddrs(ifp); | |
5379 | #endif /* INET */ | |
5380 | #if INET6 | |
5381 | in6_purgeaddrs(ifp); | |
5382 | #endif /* INET6 */ | |
1c79356b A |
5383 | } |
5384 | ||
2d21ac55 | 5385 | errno_t |
6d2010ae | 5386 | ifnet_detach(ifnet_t ifp) |
1c79356b | 5387 | { |
39236c6e A |
5388 | struct ifnet *delegated_ifp; |
5389 | ||
6d2010ae A |
5390 | if (ifp == NULL) |
5391 | return (EINVAL); | |
5392 | ||
6d2010ae | 5393 | lck_mtx_lock(rnh_lock); |
316670eb | 5394 | ifnet_head_lock_exclusive(); |
91447636 | 5395 | ifnet_lock_exclusive(ifp); |
6d2010ae A |
5396 | |
5397 | /* | |
5398 | * Check to see if this interface has previously triggered | |
5399 | * aggressive protocol draining; if so, decrement the global | |
5400 | * refcnt and clear PR_AGGDRAIN on the route domain if | |
5401 | * there are no more of such an interface around. | |
5402 | */ | |
5403 | (void) ifnet_set_idle_flags_locked(ifp, 0, ~0); | |
5404 | ||
5405 | lck_mtx_lock_spin(&ifp->if_ref_lock); | |
5406 | if (!(ifp->if_refflags & IFRF_ATTACHED)) { | |
5407 | lck_mtx_unlock(&ifp->if_ref_lock); | |
5408 | ifnet_lock_done(ifp); | |
6d2010ae | 5409 | ifnet_head_done(); |
13f56ec4 | 5410 | lck_mtx_unlock(rnh_lock); |
6d2010ae A |
5411 | return (EINVAL); |
5412 | } else if (ifp->if_refflags & IFRF_DETACHING) { | |
91447636 | 5413 | /* Interface has already been detached */ |
6d2010ae | 5414 | lck_mtx_unlock(&ifp->if_ref_lock); |
91447636 | 5415 | ifnet_lock_done(ifp); |
6d2010ae | 5416 | ifnet_head_done(); |
13f56ec4 | 5417 | lck_mtx_unlock(rnh_lock); |
6d2010ae | 5418 | return (ENXIO); |
55e303ae | 5419 | } |
6d2010ae A |
5420 | /* Indicate this interface is being detached */ |
5421 | ifp->if_refflags &= ~IFRF_ATTACHED; | |
5422 | ifp->if_refflags |= IFRF_DETACHING; | |
5423 | lck_mtx_unlock(&ifp->if_ref_lock); | |
5424 | ||
5425 | if (dlil_verbose) | |
39236c6e | 5426 | printf("%s: detaching\n", if_name(ifp)); |
6d2010ae | 5427 | |
91447636 | 5428 | /* |
6d2010ae A |
5429 | * Remove ifnet from the ifnet_head, ifindex2ifnet[]; it will |
5430 | * no longer be visible during lookups from this point. | |
91447636 | 5431 | */ |
6d2010ae A |
5432 | VERIFY(ifindex2ifnet[ifp->if_index] == ifp); |
5433 | TAILQ_REMOVE(&ifnet_head, ifp, if_link); | |
5434 | ifp->if_link.tqe_next = NULL; | |
5435 | ifp->if_link.tqe_prev = NULL; | |
5436 | ifindex2ifnet[ifp->if_index] = NULL; | |
5437 | ||
5438 | /* Record detach PC stacktrace */ | |
5439 | ctrace_record(&((struct dlil_ifnet *)ifp)->dl_if_detach); | |
5440 | ||
39236c6e A |
5441 | /* Clear logging parameters */ |
5442 | bzero(&ifp->if_log, sizeof (ifp->if_log)); | |
5443 | ||
5444 | /* Clear delegated interface info (reference released below) */ | |
5445 | delegated_ifp = ifp->if_delegated.ifp; | |
5446 | bzero(&ifp->if_delegated, sizeof (ifp->if_delegated)); | |
5447 | ||
91447636 | 5448 | ifnet_lock_done(ifp); |
6d2010ae | 5449 | ifnet_head_done(); |
13f56ec4 | 5450 | lck_mtx_unlock(rnh_lock); |
6d2010ae | 5451 | |
39236c6e A |
5452 | /* Release reference held on the delegated interface */ |
5453 | if (delegated_ifp != NULL) | |
5454 | ifnet_release(delegated_ifp); | |
5455 | ||
316670eb A |
5456 | /* Reset Link Quality Metric (unless loopback [lo0]) */ |
5457 | if (ifp != lo_ifp) | |
5458 | if_lqm_update(ifp, IFNET_LQM_THRESH_OFF); | |
5459 | ||
5460 | /* Reset TCP local statistics */ | |
5461 | if (ifp->if_tcp_stat != NULL) | |
5462 | bzero(ifp->if_tcp_stat, sizeof(*ifp->if_tcp_stat)); | |
5463 | ||
5464 | /* Reset UDP local statistics */ | |
5465 | if (ifp->if_udp_stat != NULL) | |
5466 | bzero(ifp->if_udp_stat, sizeof(*ifp->if_udp_stat)); | |
5467 | ||
2d21ac55 A |
5468 | /* Let BPF know we're detaching */ |
5469 | bpfdetach(ifp); | |
6d2010ae A |
5470 | |
5471 | /* Mark the interface as DOWN */ | |
5472 | if_down(ifp); | |
5473 | ||
5474 | /* Disable forwarding cached route */ | |
5475 | lck_mtx_lock(&ifp->if_cached_route_lock); | |
5476 | ifp->if_fwd_cacheok = 0; | |
5477 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
5478 | ||
39236c6e | 5479 | ifp->if_data_threshold = 0; |
d1ecb069 | 5480 | /* |
6d2010ae A |
5481 | * Drain any deferred IGMPv3/MLDv2 query responses, but keep the |
5482 | * references to the info structures and leave them attached to | |
5483 | * this ifnet. | |
d1ecb069 | 5484 | */ |
6d2010ae A |
5485 | #if INET |
5486 | igmp_domifdetach(ifp); | |
5487 | #endif /* INET */ | |
5488 | #if INET6 | |
5489 | mld_domifdetach(ifp); | |
5490 | #endif /* INET6 */ | |
5491 | ||
5492 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_IF_DETACHING, NULL, 0); | |
5493 | ||
5494 | /* Let worker thread take care of the rest, to avoid reentrancy */ | |
7ddcb079 | 5495 | dlil_if_lock(); |
6d2010ae | 5496 | ifnet_detaching_enqueue(ifp); |
7ddcb079 | 5497 | dlil_if_unlock(); |
6d2010ae A |
5498 | |
5499 | return (0); | |
5500 | } | |
5501 | ||
5502 | static void | |
5503 | ifnet_detaching_enqueue(struct ifnet *ifp) | |
5504 | { | |
7ddcb079 | 5505 | dlil_if_lock_assert(); |
6d2010ae A |
5506 | |
5507 | ++ifnet_detaching_cnt; | |
5508 | VERIFY(ifnet_detaching_cnt != 0); | |
5509 | TAILQ_INSERT_TAIL(&ifnet_detaching_head, ifp, if_detaching_link); | |
5510 | wakeup((caddr_t)&ifnet_delayed_run); | |
5511 | } | |
5512 | ||
5513 | static struct ifnet * | |
5514 | ifnet_detaching_dequeue(void) | |
5515 | { | |
5516 | struct ifnet *ifp; | |
5517 | ||
7ddcb079 | 5518 | dlil_if_lock_assert(); |
6d2010ae A |
5519 | |
5520 | ifp = TAILQ_FIRST(&ifnet_detaching_head); | |
5521 | VERIFY(ifnet_detaching_cnt != 0 || ifp == NULL); | |
5522 | if (ifp != NULL) { | |
5523 | VERIFY(ifnet_detaching_cnt != 0); | |
5524 | --ifnet_detaching_cnt; | |
5525 | TAILQ_REMOVE(&ifnet_detaching_head, ifp, if_detaching_link); | |
5526 | ifp->if_detaching_link.tqe_next = NULL; | |
5527 | ifp->if_detaching_link.tqe_prev = NULL; | |
5528 | } | |
5529 | return (ifp); | |
5530 | } | |
5531 | ||
316670eb A |
5532 | static int |
5533 | ifnet_detacher_thread_cont(int err) | |
6d2010ae | 5534 | { |
316670eb | 5535 | #pragma unused(err) |
6d2010ae A |
5536 | struct ifnet *ifp; |
5537 | ||
5538 | for (;;) { | |
316670eb | 5539 | dlil_if_lock_assert(); |
6d2010ae | 5540 | while (ifnet_detaching_cnt == 0) { |
316670eb A |
5541 | (void) msleep0(&ifnet_delayed_run, &dlil_ifnet_lock, |
5542 | (PZERO - 1), "ifnet_detacher_cont", 0, | |
5543 | ifnet_detacher_thread_cont); | |
5544 | /* NOTREACHED */ | |
6d2010ae A |
5545 | } |
5546 | ||
5547 | VERIFY(TAILQ_FIRST(&ifnet_detaching_head) != NULL); | |
5548 | ||
5549 | /* Take care of detaching ifnet */ | |
5550 | ifp = ifnet_detaching_dequeue(); | |
316670eb A |
5551 | if (ifp != NULL) { |
5552 | dlil_if_unlock(); | |
6d2010ae | 5553 | ifnet_detach_final(ifp); |
316670eb A |
5554 | dlil_if_lock(); |
5555 | } | |
55e303ae | 5556 | } |
316670eb A |
5557 | /* NOTREACHED */ |
5558 | return (0); | |
5559 | } | |
5560 | ||
5561 | static void | |
5562 | ifnet_detacher_thread_func(void *v, wait_result_t w) | |
5563 | { | |
5564 | #pragma unused(v, w) | |
5565 | dlil_if_lock(); | |
5566 | (void) msleep0(&ifnet_delayed_run, &dlil_ifnet_lock, | |
5567 | (PZERO - 1), "ifnet_detacher", 0, ifnet_detacher_thread_cont); | |
5568 | /* | |
5569 | * msleep0() shouldn't have returned as PCATCH was not set; | |
5570 | * therefore assert in this case. | |
5571 | */ | |
5572 | dlil_if_unlock(); | |
5573 | VERIFY(0); | |
6d2010ae | 5574 | } |
b0d623f7 | 5575 | |
6d2010ae A |
5576 | static void |
5577 | ifnet_detach_final(struct ifnet *ifp) | |
5578 | { | |
5579 | struct ifnet_filter *filter, *filter_next; | |
5580 | struct ifnet_filter_head fhead; | |
316670eb | 5581 | struct dlil_threading_info *inp; |
6d2010ae A |
5582 | struct ifaddr *ifa; |
5583 | ifnet_detached_func if_free; | |
5584 | int i; | |
5585 | ||
5586 | lck_mtx_lock(&ifp->if_ref_lock); | |
5587 | if (!(ifp->if_refflags & IFRF_DETACHING)) { | |
5588 | panic("%s: flags mismatch (detaching not set) ifp=%p", | |
5589 | __func__, ifp); | |
5590 | /* NOTREACHED */ | |
5591 | } | |
5592 | ||
316670eb A |
5593 | /* |
5594 | * Wait until the existing IO references get released | |
5595 | * before we proceed with ifnet_detach. This is not a | |
5596 | * common case, so block without using a continuation. | |
b0d623f7 | 5597 | */ |
6d2010ae | 5598 | while (ifp->if_refio > 0) { |
39236c6e A |
5599 | printf("%s: Waiting for IO references on %s interface " |
5600 | "to be released\n", __func__, if_name(ifp)); | |
6d2010ae A |
5601 | (void) msleep(&(ifp->if_refio), &ifp->if_ref_lock, |
5602 | (PZERO - 1), "ifnet_ioref_wait", NULL); | |
5603 | } | |
5604 | lck_mtx_unlock(&ifp->if_ref_lock); | |
5605 | ||
fe8ab488 A |
5606 | /* Drain and destroy send queue */ |
5607 | ifclassq_teardown(ifp); | |
5608 | ||
6d2010ae A |
5609 | /* Detach interface filters */ |
5610 | lck_mtx_lock(&ifp->if_flt_lock); | |
5611 | if_flt_monitor_enter(ifp); | |
b0d623f7 | 5612 | |
6d2010ae | 5613 | lck_mtx_assert(&ifp->if_flt_lock, LCK_MTX_ASSERT_OWNED); |
91447636 A |
5614 | fhead = ifp->if_flt_head; |
5615 | TAILQ_INIT(&ifp->if_flt_head); | |
2d21ac55 | 5616 | |
6d2010ae A |
5617 | for (filter = TAILQ_FIRST(&fhead); filter; filter = filter_next) { |
5618 | filter_next = TAILQ_NEXT(filter, filt_next); | |
5619 | lck_mtx_unlock(&ifp->if_flt_lock); | |
5620 | ||
5621 | dlil_detach_filter_internal(filter, 1); | |
5622 | lck_mtx_lock(&ifp->if_flt_lock); | |
5623 | } | |
5624 | if_flt_monitor_leave(ifp); | |
5625 | lck_mtx_unlock(&ifp->if_flt_lock); | |
5626 | ||
5627 | /* Tell upper layers to drop their network addresses */ | |
5628 | if_purgeaddrs(ifp); | |
5629 | ||
5630 | ifnet_lock_exclusive(ifp); | |
5631 | ||
5632 | /* Uplumb all protocols */ | |
5633 | for (i = 0; i < PROTO_HASH_SLOTS; i++) { | |
5634 | struct if_proto *proto; | |
5635 | ||
5636 | proto = SLIST_FIRST(&ifp->if_proto_hash[i]); | |
5637 | while (proto != NULL) { | |
5638 | protocol_family_t family = proto->protocol_family; | |
5639 | ifnet_lock_done(ifp); | |
5640 | proto_unplumb(family, ifp); | |
5641 | ifnet_lock_exclusive(ifp); | |
5642 | proto = SLIST_FIRST(&ifp->if_proto_hash[i]); | |
5643 | } | |
5644 | /* There should not be any protocols left */ | |
5645 | VERIFY(SLIST_EMPTY(&ifp->if_proto_hash[i])); | |
5646 | } | |
5647 | zfree(dlif_phash_zone, ifp->if_proto_hash); | |
5648 | ifp->if_proto_hash = NULL; | |
5649 | ||
5650 | /* Detach (permanent) link address from if_addrhead */ | |
5651 | ifa = TAILQ_FIRST(&ifp->if_addrhead); | |
5652 | VERIFY(ifnet_addrs[ifp->if_index - 1] == ifa); | |
5653 | IFA_LOCK(ifa); | |
5654 | if_detach_link_ifa(ifp, ifa); | |
5655 | IFA_UNLOCK(ifa); | |
5656 | ||
5657 | /* Remove (permanent) link address from ifnet_addrs[] */ | |
5658 | IFA_REMREF(ifa); | |
5659 | ifnet_addrs[ifp->if_index - 1] = NULL; | |
5660 | ||
5661 | /* This interface should not be on {ifnet_head,detaching} */ | |
5662 | VERIFY(ifp->if_link.tqe_next == NULL); | |
5663 | VERIFY(ifp->if_link.tqe_prev == NULL); | |
5664 | VERIFY(ifp->if_detaching_link.tqe_next == NULL); | |
5665 | VERIFY(ifp->if_detaching_link.tqe_prev == NULL); | |
5666 | ||
5667 | /* Prefix list should be empty by now */ | |
5668 | VERIFY(TAILQ_EMPTY(&ifp->if_prefixhead)); | |
5669 | ||
5670 | /* The slot should have been emptied */ | |
5671 | VERIFY(ifindex2ifnet[ifp->if_index] == NULL); | |
5672 | ||
5673 | /* There should not be any addresses left */ | |
5674 | VERIFY(TAILQ_EMPTY(&ifp->if_addrhead)); | |
1c79356b | 5675 | |
316670eb A |
5676 | /* |
5677 | * Signal the starter thread to terminate itself. | |
5678 | */ | |
5679 | if (ifp->if_start_thread != THREAD_NULL) { | |
5680 | lck_mtx_lock_spin(&ifp->if_start_lock); | |
39236c6e | 5681 | ifp->if_start_flags = 0; |
316670eb A |
5682 | ifp->if_start_thread = THREAD_NULL; |
5683 | wakeup_one((caddr_t)&ifp->if_start_thread); | |
5684 | lck_mtx_unlock(&ifp->if_start_lock); | |
5685 | } | |
5686 | ||
5687 | /* | |
5688 | * Signal the poller thread to terminate itself. | |
5689 | */ | |
5690 | if (ifp->if_poll_thread != THREAD_NULL) { | |
5691 | lck_mtx_lock_spin(&ifp->if_poll_lock); | |
5692 | ifp->if_poll_thread = THREAD_NULL; | |
5693 | wakeup_one((caddr_t)&ifp->if_poll_thread); | |
5694 | lck_mtx_unlock(&ifp->if_poll_lock); | |
5695 | } | |
5696 | ||
2d21ac55 A |
5697 | /* |
5698 | * If thread affinity was set for the workloop thread, we will need | |
5699 | * to tear down the affinity and release the extra reference count | |
316670eb A |
5700 | * taken at attach time. Does not apply to lo0 or other interfaces |
5701 | * without dedicated input threads. | |
2d21ac55 | 5702 | */ |
316670eb A |
5703 | if ((inp = ifp->if_inp) != NULL) { |
5704 | VERIFY(inp != dlil_main_input_thread); | |
5705 | ||
5706 | if (inp->net_affinity) { | |
5707 | struct thread *tp, *wtp, *ptp; | |
5708 | ||
5709 | lck_mtx_lock_spin(&inp->input_lck); | |
5710 | wtp = inp->wloop_thr; | |
5711 | inp->wloop_thr = THREAD_NULL; | |
5712 | ptp = inp->poll_thr; | |
5713 | inp->poll_thr = THREAD_NULL; | |
5714 | tp = inp->input_thr; /* don't nullify now */ | |
5715 | inp->tag = 0; | |
5716 | inp->net_affinity = FALSE; | |
5717 | lck_mtx_unlock(&inp->input_lck); | |
5718 | ||
5719 | /* Tear down poll thread affinity */ | |
5720 | if (ptp != NULL) { | |
5721 | VERIFY(ifp->if_eflags & IFEF_RXPOLL); | |
5722 | (void) dlil_affinity_set(ptp, | |
5723 | THREAD_AFFINITY_TAG_NULL); | |
5724 | thread_deallocate(ptp); | |
6d2010ae | 5725 | } |
2d21ac55 | 5726 | |
2d21ac55 | 5727 | /* Tear down workloop thread affinity */ |
316670eb A |
5728 | if (wtp != NULL) { |
5729 | (void) dlil_affinity_set(wtp, | |
2d21ac55 | 5730 | THREAD_AFFINITY_TAG_NULL); |
316670eb | 5731 | thread_deallocate(wtp); |
2d21ac55 | 5732 | } |
1c79356b | 5733 | |
316670eb | 5734 | /* Tear down DLIL input thread affinity */ |
2d21ac55 A |
5735 | (void) dlil_affinity_set(tp, THREAD_AFFINITY_TAG_NULL); |
5736 | thread_deallocate(tp); | |
9bccf70c | 5737 | } |
1c79356b | 5738 | |
316670eb A |
5739 | /* disassociate ifp DLIL input thread */ |
5740 | ifp->if_inp = NULL; | |
6d2010ae | 5741 | |
316670eb A |
5742 | lck_mtx_lock_spin(&inp->input_lck); |
5743 | inp->input_waiting |= DLIL_INPUT_TERMINATE; | |
5744 | if (!(inp->input_waiting & DLIL_INPUT_RUNNING)) { | |
5745 | wakeup_one((caddr_t)&inp->input_waiting); | |
91447636 | 5746 | } |
316670eb | 5747 | lck_mtx_unlock(&inp->input_lck); |
55e303ae | 5748 | } |
6d2010ae A |
5749 | |
5750 | /* The driver might unload, so point these to ourselves */ | |
5751 | if_free = ifp->if_free; | |
5752 | ifp->if_output = ifp_if_output; | |
316670eb A |
5753 | ifp->if_pre_enqueue = ifp_if_output; |
5754 | ifp->if_start = ifp_if_start; | |
5755 | ifp->if_output_ctl = ifp_if_ctl; | |
5756 | ifp->if_input_poll = ifp_if_input_poll; | |
5757 | ifp->if_input_ctl = ifp_if_ctl; | |
6d2010ae A |
5758 | ifp->if_ioctl = ifp_if_ioctl; |
5759 | ifp->if_set_bpf_tap = ifp_if_set_bpf_tap; | |
5760 | ifp->if_free = ifp_if_free; | |
5761 | ifp->if_demux = ifp_if_demux; | |
5762 | ifp->if_event = ifp_if_event; | |
39236c6e A |
5763 | ifp->if_framer_legacy = ifp_if_framer; |
5764 | ifp->if_framer = ifp_if_framer_extended; | |
6d2010ae A |
5765 | ifp->if_add_proto = ifp_if_add_proto; |
5766 | ifp->if_del_proto = ifp_if_del_proto; | |
5767 | ifp->if_check_multi = ifp_if_check_multi; | |
5768 | ||
316670eb A |
5769 | /* wipe out interface description */ |
5770 | VERIFY(ifp->if_desc.ifd_maxlen == IF_DESCSIZE); | |
5771 | ifp->if_desc.ifd_len = 0; | |
5772 | VERIFY(ifp->if_desc.ifd_desc != NULL); | |
5773 | bzero(ifp->if_desc.ifd_desc, IF_DESCSIZE); | |
5774 | ||
39236c6e A |
5775 | /* there shouldn't be any delegation by now */ |
5776 | VERIFY(ifp->if_delegated.ifp == NULL); | |
5777 | VERIFY(ifp->if_delegated.type == 0); | |
5778 | VERIFY(ifp->if_delegated.family == 0); | |
5779 | VERIFY(ifp->if_delegated.subfamily == 0); | |
fe8ab488 | 5780 | VERIFY(ifp->if_delegated.expensive == 0); |
39236c6e | 5781 | |
6d2010ae A |
5782 | ifnet_lock_done(ifp); |
5783 | ||
5784 | #if PF | |
5785 | /* | |
5786 | * Detach this interface from packet filter, if enabled. | |
5787 | */ | |
5788 | pf_ifnet_hook(ifp, 0); | |
5789 | #endif /* PF */ | |
5790 | ||
5791 | /* Filter list should be empty */ | |
5792 | lck_mtx_lock_spin(&ifp->if_flt_lock); | |
5793 | VERIFY(TAILQ_EMPTY(&ifp->if_flt_head)); | |
5794 | VERIFY(ifp->if_flt_busy == 0); | |
5795 | VERIFY(ifp->if_flt_waiters == 0); | |
5796 | lck_mtx_unlock(&ifp->if_flt_lock); | |
5797 | ||
316670eb A |
5798 | /* Last chance to drain send queue */ |
5799 | if_qflush(ifp, 0); | |
5800 | ||
6d2010ae A |
5801 | /* Last chance to cleanup any cached route */ |
5802 | lck_mtx_lock(&ifp->if_cached_route_lock); | |
5803 | VERIFY(!ifp->if_fwd_cacheok); | |
39236c6e | 5804 | ROUTE_RELEASE(&ifp->if_fwd_route); |
6d2010ae | 5805 | bzero(&ifp->if_fwd_route, sizeof (ifp->if_fwd_route)); |
39236c6e | 5806 | ROUTE_RELEASE(&ifp->if_src_route); |
6d2010ae | 5807 | bzero(&ifp->if_src_route, sizeof (ifp->if_src_route)); |
39236c6e | 5808 | ROUTE_RELEASE(&ifp->if_src_route6); |
6d2010ae A |
5809 | bzero(&ifp->if_src_route6, sizeof (ifp->if_src_route6)); |
5810 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
5811 | ||
39236c6e A |
5812 | VERIFY(ifp->if_data_threshold == 0); |
5813 | ||
6d2010ae A |
5814 | ifnet_llreach_ifdetach(ifp); |
5815 | ||
5816 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_IF_DETACHED, NULL, 0); | |
5817 | ||
5818 | if (if_free != NULL) | |
5819 | if_free(ifp); | |
5820 | ||
5821 | /* | |
5822 | * Finally, mark this ifnet as detached. | |
5823 | */ | |
5824 | lck_mtx_lock_spin(&ifp->if_ref_lock); | |
5825 | if (!(ifp->if_refflags & IFRF_DETACHING)) { | |
5826 | panic("%s: flags mismatch (detaching not set) ifp=%p", | |
5827 | __func__, ifp); | |
5828 | /* NOTREACHED */ | |
55e303ae | 5829 | } |
6d2010ae A |
5830 | ifp->if_refflags &= ~IFRF_DETACHING; |
5831 | lck_mtx_unlock(&ifp->if_ref_lock); | |
5832 | ||
5833 | if (dlil_verbose) | |
39236c6e | 5834 | printf("%s: detached\n", if_name(ifp)); |
6d2010ae A |
5835 | |
5836 | /* Release reference held during ifnet attach */ | |
5837 | ifnet_release(ifp); | |
1c79356b | 5838 | } |
9bccf70c | 5839 | |
91447636 | 5840 | static errno_t |
6d2010ae | 5841 | ifp_if_output(struct ifnet *ifp, struct mbuf *m) |
9bccf70c | 5842 | { |
6d2010ae A |
5843 | #pragma unused(ifp) |
5844 | m_freem(m); | |
5845 | return (0); | |
9bccf70c A |
5846 | } |
5847 | ||
316670eb A |
5848 | static void |
5849 | ifp_if_start(struct ifnet *ifp) | |
5850 | { | |
5851 | ifnet_purge(ifp); | |
5852 | } | |
5853 | ||
5854 | static void | |
5855 | ifp_if_input_poll(struct ifnet *ifp, u_int32_t flags, u_int32_t max_cnt, | |
5856 | struct mbuf **m_head, struct mbuf **m_tail, u_int32_t *cnt, u_int32_t *len) | |
5857 | { | |
5858 | #pragma unused(ifp, flags, max_cnt) | |
5859 | if (m_head != NULL) | |
5860 | *m_head = NULL; | |
5861 | if (m_tail != NULL) | |
5862 | *m_tail = NULL; | |
5863 | if (cnt != NULL) | |
5864 | *cnt = 0; | |
5865 | if (len != NULL) | |
5866 | *len = 0; | |
5867 | } | |
5868 | ||
5869 | static errno_t | |
5870 | ifp_if_ctl(struct ifnet *ifp, ifnet_ctl_cmd_t cmd, u_int32_t arglen, void *arg) | |
5871 | { | |
5872 | #pragma unused(ifp, cmd, arglen, arg) | |
5873 | return (EOPNOTSUPP); | |
5874 | } | |
5875 | ||
6d2010ae A |
5876 | static errno_t |
5877 | ifp_if_demux(struct ifnet *ifp, struct mbuf *m, char *fh, protocol_family_t *pf) | |
9bccf70c | 5878 | { |
6d2010ae A |
5879 | #pragma unused(ifp, fh, pf) |
5880 | m_freem(m); | |
5881 | return (EJUSTRETURN); | |
9bccf70c A |
5882 | } |
5883 | ||
6d2010ae A |
5884 | static errno_t |
5885 | ifp_if_add_proto(struct ifnet *ifp, protocol_family_t pf, | |
5886 | const struct ifnet_demux_desc *da, u_int32_t dc) | |
9bccf70c | 5887 | { |
6d2010ae A |
5888 | #pragma unused(ifp, pf, da, dc) |
5889 | return (EINVAL); | |
9bccf70c A |
5890 | } |
5891 | ||
91447636 | 5892 | static errno_t |
6d2010ae | 5893 | ifp_if_del_proto(struct ifnet *ifp, protocol_family_t pf) |
9bccf70c | 5894 | { |
6d2010ae A |
5895 | #pragma unused(ifp, pf) |
5896 | return (EINVAL); | |
5897 | } | |
5898 | ||
5899 | static errno_t | |
5900 | ifp_if_check_multi(struct ifnet *ifp, const struct sockaddr *sa) | |
5901 | { | |
5902 | #pragma unused(ifp, sa) | |
5903 | return (EOPNOTSUPP); | |
5904 | } | |
5905 | ||
39236c6e A |
5906 | static errno_t |
5907 | ifp_if_framer(struct ifnet *ifp, struct mbuf **m, | |
5908 | const struct sockaddr *sa, const char *ll, const char *t) | |
6d2010ae A |
5909 | { |
5910 | #pragma unused(ifp, m, sa, ll, t) | |
39236c6e A |
5911 | return (ifp_if_framer_extended(ifp, m, sa, ll, t, NULL, NULL)); |
5912 | } | |
5913 | ||
5914 | static errno_t | |
5915 | ifp_if_framer_extended(struct ifnet *ifp, struct mbuf **m, | |
5916 | const struct sockaddr *sa, const char *ll, const char *t, | |
5917 | u_int32_t *pre, u_int32_t *post) | |
5918 | { | |
5919 | #pragma unused(ifp, sa, ll, t) | |
6d2010ae A |
5920 | m_freem(*m); |
5921 | *m = NULL; | |
39236c6e A |
5922 | |
5923 | if (pre != NULL) | |
5924 | *pre = 0; | |
5925 | if (post != NULL) | |
5926 | *post = 0; | |
5927 | ||
6d2010ae A |
5928 | return (EJUSTRETURN); |
5929 | } | |
5930 | ||
316670eb | 5931 | errno_t |
6d2010ae A |
5932 | ifp_if_ioctl(struct ifnet *ifp, unsigned long cmd, void *arg) |
5933 | { | |
5934 | #pragma unused(ifp, cmd, arg) | |
5935 | return (EOPNOTSUPP); | |
5936 | } | |
5937 | ||
5938 | static errno_t | |
5939 | ifp_if_set_bpf_tap(struct ifnet *ifp, bpf_tap_mode tm, bpf_packet_func f) | |
5940 | { | |
5941 | #pragma unused(ifp, tm, f) | |
5942 | /* XXX not sure what to do here */ | |
5943 | return (0); | |
5944 | } | |
5945 | ||
5946 | static void | |
5947 | ifp_if_free(struct ifnet *ifp) | |
5948 | { | |
5949 | #pragma unused(ifp) | |
5950 | } | |
5951 | ||
5952 | static void | |
5953 | ifp_if_event(struct ifnet *ifp, const struct kev_msg *e) | |
5954 | { | |
5955 | #pragma unused(ifp, e) | |
9bccf70c A |
5956 | } |
5957 | ||
2d21ac55 | 5958 | __private_extern__ |
6d2010ae A |
5959 | int dlil_if_acquire(u_int32_t family, const void *uniqueid, |
5960 | size_t uniqueid_len, struct ifnet **ifp) | |
5961 | { | |
5962 | struct ifnet *ifp1 = NULL; | |
5963 | struct dlil_ifnet *dlifp1 = NULL; | |
5964 | void *buf, *base, **pbuf; | |
5965 | int ret = 0; | |
5966 | ||
7ddcb079 | 5967 | dlil_if_lock(); |
6d2010ae A |
5968 | TAILQ_FOREACH(dlifp1, &dlil_ifnet_head, dl_if_link) { |
5969 | ifp1 = (struct ifnet *)dlifp1; | |
5970 | ||
5971 | if (ifp1->if_family != family) | |
5972 | continue; | |
5973 | ||
5974 | lck_mtx_lock(&dlifp1->dl_if_lock); | |
5975 | /* same uniqueid and same len or no unique id specified */ | |
5976 | if ((uniqueid_len == dlifp1->dl_if_uniqueid_len) && | |
5977 | !bcmp(uniqueid, dlifp1->dl_if_uniqueid, uniqueid_len)) { | |
5978 | /* check for matching interface in use */ | |
5979 | if (dlifp1->dl_if_flags & DLIF_INUSE) { | |
5980 | if (uniqueid_len) { | |
5981 | ret = EBUSY; | |
5982 | lck_mtx_unlock(&dlifp1->dl_if_lock); | |
9bccf70c | 5983 | goto end; |
6d2010ae A |
5984 | } |
5985 | } else { | |
5986 | dlifp1->dl_if_flags |= (DLIF_INUSE|DLIF_REUSE); | |
5987 | lck_mtx_unlock(&dlifp1->dl_if_lock); | |
5988 | *ifp = ifp1; | |
5989 | goto end; | |
5990 | } | |
5991 | } | |
5992 | lck_mtx_unlock(&dlifp1->dl_if_lock); | |
5993 | } | |
5994 | ||
5995 | /* no interface found, allocate a new one */ | |
5996 | buf = zalloc(dlif_zone); | |
5997 | if (buf == NULL) { | |
5998 | ret = ENOMEM; | |
5999 | goto end; | |
6000 | } | |
6001 | bzero(buf, dlif_bufsize); | |
6002 | ||
6003 | /* Get the 64-bit aligned base address for this object */ | |
6004 | base = (void *)P2ROUNDUP((intptr_t)buf + sizeof (u_int64_t), | |
6005 | sizeof (u_int64_t)); | |
6006 | VERIFY(((intptr_t)base + dlif_size) <= ((intptr_t)buf + dlif_bufsize)); | |
6007 | ||
6008 | /* | |
6009 | * Wind back a pointer size from the aligned base and | |
6010 | * save the original address so we can free it later. | |
6011 | */ | |
6012 | pbuf = (void **)((intptr_t)base - sizeof (void *)); | |
6013 | *pbuf = buf; | |
6014 | dlifp1 = base; | |
6015 | ||
6016 | if (uniqueid_len) { | |
6017 | MALLOC(dlifp1->dl_if_uniqueid, void *, uniqueid_len, | |
6018 | M_NKE, M_WAITOK); | |
6019 | if (dlifp1->dl_if_uniqueid == NULL) { | |
6020 | zfree(dlif_zone, dlifp1); | |
6021 | ret = ENOMEM; | |
6022 | goto end; | |
6023 | } | |
6024 | bcopy(uniqueid, dlifp1->dl_if_uniqueid, uniqueid_len); | |
6025 | dlifp1->dl_if_uniqueid_len = uniqueid_len; | |
6026 | } | |
6027 | ||
6028 | ifp1 = (struct ifnet *)dlifp1; | |
6029 | dlifp1->dl_if_flags = DLIF_INUSE; | |
6030 | if (ifnet_debug) { | |
6031 | dlifp1->dl_if_flags |= DLIF_DEBUG; | |
6032 | dlifp1->dl_if_trace = dlil_if_trace; | |
6033 | } | |
6034 | ifp1->if_name = dlifp1->dl_if_namestorage; | |
39236c6e | 6035 | ifp1->if_xname = dlifp1->dl_if_xnamestorage; |
316670eb A |
6036 | |
6037 | /* initialize interface description */ | |
6038 | ifp1->if_desc.ifd_maxlen = IF_DESCSIZE; | |
6039 | ifp1->if_desc.ifd_len = 0; | |
6040 | ifp1->if_desc.ifd_desc = dlifp1->dl_if_descstorage; | |
6041 | ||
2d21ac55 | 6042 | #if CONFIG_MACF_NET |
6d2010ae | 6043 | mac_ifnet_label_init(ifp1); |
2d21ac55 | 6044 | #endif |
9bccf70c | 6045 | |
316670eb A |
6046 | if ((ret = dlil_alloc_local_stats(ifp1)) != 0) { |
6047 | DLIL_PRINTF("%s: failed to allocate if local stats, " | |
6048 | "error: %d\n", __func__, ret); | |
6049 | /* This probably shouldn't be fatal */ | |
6050 | ret = 0; | |
6051 | } | |
6052 | ||
6d2010ae A |
6053 | lck_mtx_init(&dlifp1->dl_if_lock, ifnet_lock_group, ifnet_lock_attr); |
6054 | lck_rw_init(&ifp1->if_lock, ifnet_lock_group, ifnet_lock_attr); | |
6055 | lck_mtx_init(&ifp1->if_ref_lock, ifnet_lock_group, ifnet_lock_attr); | |
6056 | lck_mtx_init(&ifp1->if_flt_lock, ifnet_lock_group, ifnet_lock_attr); | |
6d2010ae A |
6057 | lck_mtx_init(&ifp1->if_addrconfig_lock, ifnet_lock_group, |
6058 | ifnet_lock_attr); | |
6059 | lck_rw_init(&ifp1->if_llreach_lock, ifnet_lock_group, ifnet_lock_attr); | |
39236c6e A |
6060 | #if INET6 |
6061 | lck_rw_init(&ifp1->if_inet6data_lock, ifnet_lock_group, ifnet_lock_attr); | |
6062 | ifp1->if_inet6data = NULL; | |
6063 | #endif | |
6d2010ae | 6064 | |
316670eb A |
6065 | /* for send data paths */ |
6066 | lck_mtx_init(&ifp1->if_start_lock, ifnet_snd_lock_group, | |
6067 | ifnet_lock_attr); | |
6068 | lck_mtx_init(&ifp1->if_cached_route_lock, ifnet_snd_lock_group, | |
6069 | ifnet_lock_attr); | |
6070 | lck_mtx_init(&ifp1->if_snd.ifcq_lock, ifnet_snd_lock_group, | |
6071 | ifnet_lock_attr); | |
6072 | ||
6073 | /* for receive data paths */ | |
6074 | lck_mtx_init(&ifp1->if_poll_lock, ifnet_rcv_lock_group, | |
6075 | ifnet_lock_attr); | |
6076 | ||
6d2010ae A |
6077 | TAILQ_INSERT_TAIL(&dlil_ifnet_head, dlifp1, dl_if_link); |
6078 | ||
6079 | *ifp = ifp1; | |
9bccf70c A |
6080 | |
6081 | end: | |
7ddcb079 | 6082 | dlil_if_unlock(); |
9bccf70c | 6083 | |
6d2010ae A |
6084 | VERIFY(dlifp1 == NULL || (IS_P2ALIGNED(dlifp1, sizeof (u_int64_t)) && |
6085 | IS_P2ALIGNED(&ifp1->if_data, sizeof (u_int64_t)))); | |
6086 | ||
6087 | return (ret); | |
9bccf70c A |
6088 | } |
6089 | ||
2d21ac55 | 6090 | __private_extern__ void |
6d2010ae A |
6091 | dlil_if_release(ifnet_t ifp) |
6092 | { | |
6093 | struct dlil_ifnet *dlifp = (struct dlil_ifnet *)ifp; | |
6094 | ||
6095 | ifnet_lock_exclusive(ifp); | |
6096 | lck_mtx_lock(&dlifp->dl_if_lock); | |
6097 | dlifp->dl_if_flags &= ~DLIF_INUSE; | |
fe8ab488 | 6098 | strlcpy(dlifp->dl_if_namestorage, ifp->if_name, IFNAMSIZ); |
6d2010ae | 6099 | ifp->if_name = dlifp->dl_if_namestorage; |
39236c6e A |
6100 | /* Reset external name (name + unit) */ |
6101 | ifp->if_xname = dlifp->dl_if_xnamestorage; | |
6102 | snprintf(__DECONST(char *, ifp->if_xname), IFXNAMSIZ, | |
6103 | "%s?", ifp->if_name); | |
6d2010ae | 6104 | lck_mtx_unlock(&dlifp->dl_if_lock); |
2d21ac55 | 6105 | #if CONFIG_MACF_NET |
6d2010ae A |
6106 | /* |
6107 | * We can either recycle the MAC label here or in dlil_if_acquire(). | |
6108 | * It seems logical to do it here but this means that anything that | |
6109 | * still has a handle on ifp will now see it as unlabeled. | |
6110 | * Since the interface is "dead" that may be OK. Revisit later. | |
6111 | */ | |
6112 | mac_ifnet_label_recycle(ifp); | |
2d21ac55 | 6113 | #endif |
6d2010ae | 6114 | ifnet_lock_done(ifp); |
9bccf70c | 6115 | } |
4a3eedf9 | 6116 | |
7ddcb079 A |
6117 | __private_extern__ void |
6118 | dlil_if_lock(void) | |
6119 | { | |
6120 | lck_mtx_lock(&dlil_ifnet_lock); | |
6121 | } | |
6122 | ||
6123 | __private_extern__ void | |
6124 | dlil_if_unlock(void) | |
6125 | { | |
6126 | lck_mtx_unlock(&dlil_ifnet_lock); | |
6127 | } | |
6128 | ||
6129 | __private_extern__ void | |
6130 | dlil_if_lock_assert(void) | |
6131 | { | |
6132 | lck_mtx_assert(&dlil_ifnet_lock, LCK_MTX_ASSERT_OWNED); | |
6133 | } | |
6134 | ||
4a3eedf9 A |
6135 | __private_extern__ void |
6136 | dlil_proto_unplumb_all(struct ifnet *ifp) | |
6137 | { | |
6138 | /* | |
39236c6e A |
6139 | * if_proto_hash[0-2] are for PF_INET, PF_INET6 and PF_VLAN, where |
6140 | * each bucket contains exactly one entry; PF_VLAN does not need an | |
6141 | * explicit unplumb. | |
4a3eedf9 | 6142 | * |
39236c6e | 6143 | * if_proto_hash[3] is for other protocols; we expect anything |
4a3eedf9 A |
6144 | * in this bucket to respond to the DETACHING event (which would |
6145 | * have happened by now) and do the unplumb then. | |
6146 | */ | |
6147 | (void) proto_unplumb(PF_INET, ifp); | |
6148 | #if INET6 | |
6149 | (void) proto_unplumb(PF_INET6, ifp); | |
6150 | #endif /* INET6 */ | |
4a3eedf9 | 6151 | } |
6d2010ae A |
6152 | |
6153 | static void | |
6154 | ifp_src_route_copyout(struct ifnet *ifp, struct route *dst) | |
6155 | { | |
6156 | lck_mtx_lock_spin(&ifp->if_cached_route_lock); | |
6157 | lck_mtx_convert_spin(&ifp->if_cached_route_lock); | |
6158 | ||
6159 | route_copyout(dst, &ifp->if_src_route, sizeof (*dst)); | |
6160 | ||
6161 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
6162 | } | |
6163 | ||
6164 | static void | |
6165 | ifp_src_route_copyin(struct ifnet *ifp, struct route *src) | |
6166 | { | |
6167 | lck_mtx_lock_spin(&ifp->if_cached_route_lock); | |
6168 | lck_mtx_convert_spin(&ifp->if_cached_route_lock); | |
6169 | ||
6170 | if (ifp->if_fwd_cacheok) { | |
6171 | route_copyin(src, &ifp->if_src_route, sizeof (*src)); | |
6172 | } else { | |
39236c6e | 6173 | ROUTE_RELEASE(src); |
6d2010ae A |
6174 | } |
6175 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
6176 | } | |
6177 | ||
6178 | #if INET6 | |
6179 | static void | |
6180 | ifp_src_route6_copyout(struct ifnet *ifp, struct route_in6 *dst) | |
6181 | { | |
6182 | lck_mtx_lock_spin(&ifp->if_cached_route_lock); | |
6183 | lck_mtx_convert_spin(&ifp->if_cached_route_lock); | |
6184 | ||
6185 | route_copyout((struct route *)dst, (struct route *)&ifp->if_src_route6, | |
6186 | sizeof (*dst)); | |
6187 | ||
6188 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
6189 | } | |
6190 | ||
6191 | static void | |
6192 | ifp_src_route6_copyin(struct ifnet *ifp, struct route_in6 *src) | |
6193 | { | |
6194 | lck_mtx_lock_spin(&ifp->if_cached_route_lock); | |
6195 | lck_mtx_convert_spin(&ifp->if_cached_route_lock); | |
6196 | ||
6197 | if (ifp->if_fwd_cacheok) { | |
6198 | route_copyin((struct route *)src, | |
6199 | (struct route *)&ifp->if_src_route6, sizeof (*src)); | |
6200 | } else { | |
39236c6e | 6201 | ROUTE_RELEASE(src); |
6d2010ae A |
6202 | } |
6203 | lck_mtx_unlock(&ifp->if_cached_route_lock); | |
6204 | } | |
6205 | #endif /* INET6 */ | |
6206 | ||
6207 | struct rtentry * | |
6208 | ifnet_cached_rtlookup_inet(struct ifnet *ifp, struct in_addr src_ip) | |
6209 | { | |
6210 | struct route src_rt; | |
316670eb A |
6211 | struct sockaddr_in *dst; |
6212 | ||
6213 | dst = (struct sockaddr_in *)(void *)(&src_rt.ro_dst); | |
6d2010ae A |
6214 | |
6215 | ifp_src_route_copyout(ifp, &src_rt); | |
6216 | ||
39236c6e A |
6217 | if (ROUTE_UNUSABLE(&src_rt) || src_ip.s_addr != dst->sin_addr.s_addr) { |
6218 | ROUTE_RELEASE(&src_rt); | |
6219 | if (dst->sin_family != AF_INET) { | |
6d2010ae A |
6220 | bzero(&src_rt.ro_dst, sizeof (src_rt.ro_dst)); |
6221 | dst->sin_len = sizeof (src_rt.ro_dst); | |
6222 | dst->sin_family = AF_INET; | |
6223 | } | |
6224 | dst->sin_addr = src_ip; | |
6225 | ||
6226 | if (src_rt.ro_rt == NULL) { | |
6227 | src_rt.ro_rt = rtalloc1_scoped((struct sockaddr *)dst, | |
6228 | 0, 0, ifp->if_index); | |
6229 | ||
6230 | if (src_rt.ro_rt != NULL) { | |
6231 | /* retain a ref, copyin consumes one */ | |
6232 | struct rtentry *rte = src_rt.ro_rt; | |
6233 | RT_ADDREF(rte); | |
6234 | ifp_src_route_copyin(ifp, &src_rt); | |
6235 | src_rt.ro_rt = rte; | |
6236 | } | |
6237 | } | |
6238 | } | |
6239 | ||
6240 | return (src_rt.ro_rt); | |
6241 | } | |
6242 | ||
6243 | #if INET6 | |
6244 | struct rtentry* | |
6245 | ifnet_cached_rtlookup_inet6(struct ifnet *ifp, struct in6_addr *src_ip6) | |
6246 | { | |
6247 | struct route_in6 src_rt; | |
6248 | ||
6249 | ifp_src_route6_copyout(ifp, &src_rt); | |
6250 | ||
39236c6e A |
6251 | if (ROUTE_UNUSABLE(&src_rt) || |
6252 | !IN6_ARE_ADDR_EQUAL(src_ip6, &src_rt.ro_dst.sin6_addr)) { | |
6253 | ROUTE_RELEASE(&src_rt); | |
6254 | if (src_rt.ro_dst.sin6_family != AF_INET6) { | |
6d2010ae A |
6255 | bzero(&src_rt.ro_dst, sizeof (src_rt.ro_dst)); |
6256 | src_rt.ro_dst.sin6_len = sizeof (src_rt.ro_dst); | |
6257 | src_rt.ro_dst.sin6_family = AF_INET6; | |
6258 | } | |
6259 | src_rt.ro_dst.sin6_scope_id = in6_addr2scopeid(ifp, src_ip6); | |
316670eb A |
6260 | bcopy(src_ip6, &src_rt.ro_dst.sin6_addr, |
6261 | sizeof (src_rt.ro_dst.sin6_addr)); | |
6d2010ae A |
6262 | |
6263 | if (src_rt.ro_rt == NULL) { | |
6264 | src_rt.ro_rt = rtalloc1_scoped( | |
6265 | (struct sockaddr *)&src_rt.ro_dst, 0, 0, | |
6266 | ifp->if_index); | |
6267 | ||
6268 | if (src_rt.ro_rt != NULL) { | |
6269 | /* retain a ref, copyin consumes one */ | |
6270 | struct rtentry *rte = src_rt.ro_rt; | |
6271 | RT_ADDREF(rte); | |
6272 | ifp_src_route6_copyin(ifp, &src_rt); | |
6273 | src_rt.ro_rt = rte; | |
6274 | } | |
6275 | } | |
6276 | } | |
6277 | ||
6278 | return (src_rt.ro_rt); | |
6279 | } | |
6280 | #endif /* INET6 */ | |
316670eb A |
6281 | |
6282 | void | |
6283 | if_lqm_update(struct ifnet *ifp, int lqm) | |
6284 | { | |
6285 | struct kev_dl_link_quality_metric_data ev_lqm_data; | |
6286 | ||
6287 | VERIFY(lqm >= IFNET_LQM_MIN && lqm <= IFNET_LQM_MAX); | |
6288 | ||
6289 | /* Normalize to edge */ | |
fe8ab488 A |
6290 | if (lqm > IFNET_LQM_THRESH_UNKNOWN && lqm <= IFNET_LQM_THRESH_BAD) |
6291 | lqm = IFNET_LQM_THRESH_BAD; | |
6292 | else if (lqm > IFNET_LQM_THRESH_BAD && lqm <= IFNET_LQM_THRESH_POOR) | |
316670eb A |
6293 | lqm = IFNET_LQM_THRESH_POOR; |
6294 | else if (lqm > IFNET_LQM_THRESH_POOR && lqm <= IFNET_LQM_THRESH_GOOD) | |
6295 | lqm = IFNET_LQM_THRESH_GOOD; | |
6296 | ||
6297 | ifnet_lock_exclusive(ifp); | |
6298 | if (lqm == ifp->if_lqm) { | |
6299 | ifnet_lock_done(ifp); | |
6300 | return; /* nothing to update */ | |
6301 | } | |
6302 | ifp->if_lqm = lqm; | |
6303 | ifnet_lock_done(ifp); | |
6304 | ||
6305 | bzero(&ev_lqm_data, sizeof (ev_lqm_data)); | |
6306 | ev_lqm_data.link_quality_metric = lqm; | |
6307 | ||
6308 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_LINK_QUALITY_METRIC_CHANGED, | |
6309 | (struct net_event_data *)&ev_lqm_data, sizeof (ev_lqm_data)); | |
6310 | } | |
6311 | ||
6312 | /* for uuid.c */ | |
6313 | int | |
6314 | uuid_get_ethernet(u_int8_t *node) | |
6315 | { | |
6316 | struct ifnet *ifp; | |
6317 | struct sockaddr_dl *sdl; | |
6318 | ||
6319 | ifnet_head_lock_shared(); | |
6320 | TAILQ_FOREACH(ifp, &ifnet_head, if_link) { | |
6321 | ifnet_lock_shared(ifp); | |
6322 | IFA_LOCK_SPIN(ifp->if_lladdr); | |
6323 | sdl = (struct sockaddr_dl *)(void *)ifp->if_lladdr->ifa_addr; | |
6324 | if (sdl->sdl_type == IFT_ETHER) { | |
6325 | memcpy(node, LLADDR(sdl), ETHER_ADDR_LEN); | |
6326 | IFA_UNLOCK(ifp->if_lladdr); | |
6327 | ifnet_lock_done(ifp); | |
6328 | ifnet_head_done(); | |
6329 | return (0); | |
6330 | } | |
6331 | IFA_UNLOCK(ifp->if_lladdr); | |
6332 | ifnet_lock_done(ifp); | |
6333 | } | |
6334 | ifnet_head_done(); | |
6335 | ||
6336 | return (-1); | |
6337 | } | |
6338 | ||
6339 | static int | |
6340 | sysctl_rxpoll SYSCTL_HANDLER_ARGS | |
6341 | { | |
6342 | #pragma unused(arg1, arg2) | |
39236c6e A |
6343 | uint32_t i; |
6344 | int err; | |
316670eb A |
6345 | |
6346 | i = if_rxpoll; | |
6347 | ||
6348 | err = sysctl_handle_int(oidp, &i, 0, req); | |
6349 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
6350 | return (err); | |
6351 | ||
6352 | if (net_rxpoll == 0) | |
6353 | return (ENXIO); | |
6354 | ||
6355 | if_rxpoll = i; | |
6356 | return (err); | |
6357 | } | |
6358 | ||
6359 | static int | |
39236c6e | 6360 | sysctl_rxpoll_mode_holdtime SYSCTL_HANDLER_ARGS |
316670eb A |
6361 | { |
6362 | #pragma unused(arg1, arg2) | |
39236c6e A |
6363 | uint64_t q; |
6364 | int err; | |
316670eb | 6365 | |
39236c6e | 6366 | q = if_rxpoll_mode_holdtime; |
316670eb | 6367 | |
39236c6e | 6368 | err = sysctl_handle_quad(oidp, &q, 0, req); |
316670eb A |
6369 | if (err != 0 || req->newptr == USER_ADDR_NULL) |
6370 | return (err); | |
6371 | ||
39236c6e A |
6372 | if (q < IF_RXPOLL_MODE_HOLDTIME_MIN) |
6373 | q = IF_RXPOLL_MODE_HOLDTIME_MIN; | |
6374 | ||
6375 | if_rxpoll_mode_holdtime = q; | |
316670eb | 6376 | |
316670eb A |
6377 | return (err); |
6378 | } | |
6379 | ||
6380 | static int | |
39236c6e | 6381 | sysctl_rxpoll_sample_holdtime SYSCTL_HANDLER_ARGS |
316670eb A |
6382 | { |
6383 | #pragma unused(arg1, arg2) | |
39236c6e A |
6384 | uint64_t q; |
6385 | int err; | |
316670eb | 6386 | |
39236c6e | 6387 | q = if_rxpoll_sample_holdtime; |
316670eb | 6388 | |
39236c6e | 6389 | err = sysctl_handle_quad(oidp, &q, 0, req); |
316670eb A |
6390 | if (err != 0 || req->newptr == USER_ADDR_NULL) |
6391 | return (err); | |
6392 | ||
39236c6e A |
6393 | if (q < IF_RXPOLL_SAMPLETIME_MIN) |
6394 | q = IF_RXPOLL_SAMPLETIME_MIN; | |
6395 | ||
6396 | if_rxpoll_sample_holdtime = q; | |
316670eb | 6397 | |
316670eb A |
6398 | return (err); |
6399 | } | |
6400 | ||
39236c6e A |
6401 | static int |
6402 | sysctl_rxpoll_interval_time SYSCTL_HANDLER_ARGS | |
316670eb | 6403 | { |
39236c6e A |
6404 | #pragma unused(arg1, arg2) |
6405 | uint64_t q; | |
6406 | int err; | |
316670eb | 6407 | |
39236c6e | 6408 | q = if_rxpoll_interval_time; |
316670eb | 6409 | |
39236c6e A |
6410 | err = sysctl_handle_quad(oidp, &q, 0, req); |
6411 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
6412 | return (err); | |
6413 | ||
6414 | if (q < IF_RXPOLL_INTERVALTIME_MIN) | |
6415 | q = IF_RXPOLL_INTERVALTIME_MIN; | |
316670eb | 6416 | |
39236c6e | 6417 | if_rxpoll_interval_time = q; |
316670eb | 6418 | |
39236c6e | 6419 | return (err); |
316670eb A |
6420 | } |
6421 | ||
39236c6e A |
6422 | static int |
6423 | sysctl_rxpoll_wlowat SYSCTL_HANDLER_ARGS | |
316670eb | 6424 | { |
39236c6e A |
6425 | #pragma unused(arg1, arg2) |
6426 | uint32_t i; | |
6427 | int err; | |
316670eb | 6428 | |
39236c6e | 6429 | i = if_rxpoll_wlowat; |
316670eb | 6430 | |
39236c6e A |
6431 | err = sysctl_handle_int(oidp, &i, 0, req); |
6432 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
6433 | return (err); | |
316670eb | 6434 | |
39236c6e A |
6435 | if (i == 0 || i >= if_rxpoll_whiwat) |
6436 | return (EINVAL); | |
6437 | ||
6438 | if_rxpoll_wlowat = i; | |
6439 | return (err); | |
316670eb A |
6440 | } |
6441 | ||
39236c6e A |
6442 | static int |
6443 | sysctl_rxpoll_whiwat SYSCTL_HANDLER_ARGS | |
316670eb | 6444 | { |
39236c6e A |
6445 | #pragma unused(arg1, arg2) |
6446 | uint32_t i; | |
6447 | int err; | |
316670eb | 6448 | |
39236c6e | 6449 | i = if_rxpoll_whiwat; |
316670eb | 6450 | |
39236c6e A |
6451 | err = sysctl_handle_int(oidp, &i, 0, req); |
6452 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
6453 | return (err); | |
316670eb | 6454 | |
39236c6e A |
6455 | if (i <= if_rxpoll_wlowat) |
6456 | return (EINVAL); | |
6457 | ||
6458 | if_rxpoll_whiwat = i; | |
6459 | return (err); | |
316670eb A |
6460 | } |
6461 | ||
6462 | static int | |
39236c6e | 6463 | sysctl_sndq_maxlen SYSCTL_HANDLER_ARGS |
316670eb | 6464 | { |
39236c6e A |
6465 | #pragma unused(arg1, arg2) |
6466 | int i, err; | |
316670eb | 6467 | |
39236c6e | 6468 | i = if_sndq_maxlen; |
316670eb | 6469 | |
39236c6e A |
6470 | err = sysctl_handle_int(oidp, &i, 0, req); |
6471 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
6472 | return (err); | |
316670eb | 6473 | |
39236c6e A |
6474 | if (i < IF_SNDQ_MINLEN) |
6475 | i = IF_SNDQ_MINLEN; | |
316670eb | 6476 | |
39236c6e A |
6477 | if_sndq_maxlen = i; |
6478 | return (err); | |
316670eb A |
6479 | } |
6480 | ||
39236c6e A |
6481 | static int |
6482 | sysctl_rcvq_maxlen SYSCTL_HANDLER_ARGS | |
316670eb | 6483 | { |
39236c6e A |
6484 | #pragma unused(arg1, arg2) |
6485 | int i, err; | |
6486 | ||
6487 | i = if_rcvq_maxlen; | |
6488 | ||
6489 | err = sysctl_handle_int(oidp, &i, 0, req); | |
6490 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
6491 | return (err); | |
6492 | ||
6493 | if (i < IF_RCVQ_MINLEN) | |
6494 | i = IF_RCVQ_MINLEN; | |
6495 | ||
6496 | if_rcvq_maxlen = i; | |
6497 | return (err); | |
316670eb A |
6498 | } |
6499 | ||
6500 | void | |
6501 | dlil_node_present(struct ifnet *ifp, struct sockaddr *sa, | |
6502 | int32_t rssi, int lqm, int npm, u_int8_t srvinfo[48]) | |
6503 | { | |
6504 | struct kev_dl_node_presence kev; | |
6505 | struct sockaddr_dl *sdl; | |
6506 | struct sockaddr_in6 *sin6; | |
6507 | ||
6508 | VERIFY(ifp); | |
6509 | VERIFY(sa); | |
6510 | VERIFY(sa->sa_family == AF_LINK || sa->sa_family == AF_INET6); | |
6511 | ||
6512 | bzero(&kev, sizeof (kev)); | |
6513 | sin6 = &kev.sin6_node_address; | |
6514 | sdl = &kev.sdl_node_address; | |
6515 | nd6_alt_node_addr_decompose(ifp, sa, sdl, sin6); | |
6516 | kev.rssi = rssi; | |
6517 | kev.link_quality_metric = lqm; | |
6518 | kev.node_proximity_metric = npm; | |
6519 | bcopy(srvinfo, kev.node_service_info, sizeof (kev.node_service_info)); | |
6520 | ||
6521 | nd6_alt_node_present(ifp, sin6, sdl, rssi, lqm, npm); | |
6522 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_NODE_PRESENCE, | |
6523 | &kev.link_data, sizeof (kev)); | |
6524 | } | |
6525 | ||
6526 | void | |
6527 | dlil_node_absent(struct ifnet *ifp, struct sockaddr *sa) | |
6528 | { | |
6529 | struct kev_dl_node_absence kev; | |
6530 | struct sockaddr_in6 *sin6; | |
6531 | struct sockaddr_dl *sdl; | |
6532 | ||
6533 | VERIFY(ifp); | |
6534 | VERIFY(sa); | |
6535 | VERIFY(sa->sa_family == AF_LINK || sa->sa_family == AF_INET6); | |
6536 | ||
6537 | bzero(&kev, sizeof (kev)); | |
6538 | sin6 = &kev.sin6_node_address; | |
6539 | sdl = &kev.sdl_node_address; | |
6540 | nd6_alt_node_addr_decompose(ifp, sa, sdl, sin6); | |
6541 | ||
6542 | nd6_alt_node_absent(ifp, sin6); | |
6543 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_NODE_ABSENCE, | |
6544 | &kev.link_data, sizeof (kev)); | |
6545 | } | |
6546 | ||
39236c6e A |
6547 | const void * |
6548 | dlil_ifaddr_bytes(const struct sockaddr_dl *sdl, size_t *sizep, | |
6549 | kauth_cred_t *credp) | |
6550 | { | |
6551 | const u_int8_t *bytes; | |
6552 | size_t size; | |
6553 | ||
6554 | bytes = CONST_LLADDR(sdl); | |
6555 | size = sdl->sdl_alen; | |
6556 | ||
6557 | #if CONFIG_MACF | |
6558 | if (dlil_lladdr_ckreq) { | |
6559 | switch (sdl->sdl_type) { | |
6560 | case IFT_ETHER: | |
39236c6e | 6561 | case IFT_IEEE1394: |
39236c6e A |
6562 | break; |
6563 | default: | |
6564 | credp = NULL; | |
6565 | break; | |
6566 | }; | |
6567 | ||
6568 | if (credp && mac_system_check_info(*credp, "net.link.addr")) { | |
6569 | static const u_int8_t unspec[FIREWIRE_EUI64_LEN] = { | |
6570 | [0] = 2 | |
6571 | }; | |
6572 | ||
6573 | switch (sdl->sdl_type) { | |
6574 | case IFT_ETHER: | |
39236c6e A |
6575 | VERIFY(size == ETHER_ADDR_LEN); |
6576 | bytes = unspec; | |
6577 | break; | |
6578 | case IFT_IEEE1394: | |
6579 | VERIFY(size == FIREWIRE_EUI64_LEN); | |
6580 | bytes = unspec; | |
6581 | break; | |
6582 | default: | |
6583 | VERIFY(FALSE); | |
6584 | break; | |
6585 | }; | |
6586 | } | |
6587 | } | |
6588 | #else | |
6589 | #pragma unused(credp) | |
6590 | #endif | |
6591 | ||
6592 | if (sizep != NULL) *sizep = size; | |
6593 | return (bytes); | |
6594 | } | |
6595 | ||
6596 | void | |
6597 | dlil_report_issues(struct ifnet *ifp, u_int8_t modid[DLIL_MODIDLEN], | |
6598 | u_int8_t info[DLIL_MODARGLEN]) | |
6599 | { | |
6600 | struct kev_dl_issues kev; | |
6601 | struct timeval tv; | |
6602 | ||
6603 | VERIFY(ifp != NULL); | |
6604 | VERIFY(modid != NULL); | |
6605 | _CASSERT(sizeof (kev.modid) == DLIL_MODIDLEN); | |
6606 | _CASSERT(sizeof (kev.info) == DLIL_MODARGLEN); | |
6607 | ||
6608 | bzero(&kev, sizeof (&kev)); | |
6609 | ||
6610 | microtime(&tv); | |
6611 | kev.timestamp = tv.tv_sec; | |
6612 | bcopy(modid, &kev.modid, DLIL_MODIDLEN); | |
6613 | if (info != NULL) | |
6614 | bcopy(info, &kev.info, DLIL_MODARGLEN); | |
6615 | ||
6616 | dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_ISSUES, | |
6617 | &kev.link_data, sizeof (kev)); | |
6618 | } | |
6619 | ||
316670eb A |
6620 | errno_t |
6621 | ifnet_getset_opportunistic(ifnet_t ifp, u_long cmd, struct ifreq *ifr, | |
6622 | struct proc *p) | |
6623 | { | |
6624 | u_int32_t level = IFNET_THROTTLE_OFF; | |
6625 | errno_t result = 0; | |
6626 | ||
6627 | VERIFY(cmd == SIOCSIFOPPORTUNISTIC || cmd == SIOCGIFOPPORTUNISTIC); | |
6628 | ||
6629 | if (cmd == SIOCSIFOPPORTUNISTIC) { | |
6630 | /* | |
6631 | * XXX: Use priv_check_cred() instead of root check? | |
6632 | */ | |
6633 | if ((result = proc_suser(p)) != 0) | |
6634 | return (result); | |
6635 | ||
6636 | if (ifr->ifr_opportunistic.ifo_flags == | |
6637 | IFRIFOF_BLOCK_OPPORTUNISTIC) | |
6638 | level = IFNET_THROTTLE_OPPORTUNISTIC; | |
6639 | else if (ifr->ifr_opportunistic.ifo_flags == 0) | |
6640 | level = IFNET_THROTTLE_OFF; | |
6641 | else | |
6642 | result = EINVAL; | |
6643 | ||
6644 | if (result == 0) | |
6645 | result = ifnet_set_throttle(ifp, level); | |
6646 | } else if ((result = ifnet_get_throttle(ifp, &level)) == 0) { | |
6647 | ifr->ifr_opportunistic.ifo_flags = 0; | |
6648 | if (level == IFNET_THROTTLE_OPPORTUNISTIC) { | |
6649 | ifr->ifr_opportunistic.ifo_flags |= | |
6650 | IFRIFOF_BLOCK_OPPORTUNISTIC; | |
6651 | } | |
6652 | } | |
6653 | ||
6654 | /* | |
6655 | * Return the count of current opportunistic connections | |
6656 | * over the interface. | |
6657 | */ | |
6658 | if (result == 0) { | |
6659 | uint32_t flags = 0; | |
6660 | flags |= (cmd == SIOCSIFOPPORTUNISTIC) ? | |
6661 | INPCB_OPPORTUNISTIC_SETCMD : 0; | |
6662 | flags |= (level == IFNET_THROTTLE_OPPORTUNISTIC) ? | |
6663 | INPCB_OPPORTUNISTIC_THROTTLEON : 0; | |
6664 | ifr->ifr_opportunistic.ifo_inuse = | |
6665 | udp_count_opportunistic(ifp->if_index, flags) + | |
6666 | tcp_count_opportunistic(ifp->if_index, flags); | |
6667 | } | |
6668 | ||
6669 | if (result == EALREADY) | |
6670 | result = 0; | |
6671 | ||
6672 | return (result); | |
6673 | } | |
6674 | ||
6675 | int | |
6676 | ifnet_get_throttle(struct ifnet *ifp, u_int32_t *level) | |
6677 | { | |
6678 | struct ifclassq *ifq; | |
6679 | int err = 0; | |
6680 | ||
6681 | if (!(ifp->if_eflags & IFEF_TXSTART)) | |
6682 | return (ENXIO); | |
6683 | ||
6684 | *level = IFNET_THROTTLE_OFF; | |
6685 | ||
6686 | ifq = &ifp->if_snd; | |
6687 | IFCQ_LOCK(ifq); | |
6688 | /* Throttling works only for IFCQ, not ALTQ instances */ | |
6689 | if (IFCQ_IS_ENABLED(ifq)) | |
6690 | IFCQ_GET_THROTTLE(ifq, *level, err); | |
6691 | IFCQ_UNLOCK(ifq); | |
6692 | ||
6693 | return (err); | |
6694 | } | |
6695 | ||
6696 | int | |
6697 | ifnet_set_throttle(struct ifnet *ifp, u_int32_t level) | |
6698 | { | |
6699 | struct ifclassq *ifq; | |
6700 | int err = 0; | |
6701 | ||
6702 | if (!(ifp->if_eflags & IFEF_TXSTART)) | |
6703 | return (ENXIO); | |
6704 | ||
39236c6e A |
6705 | ifq = &ifp->if_snd; |
6706 | ||
316670eb A |
6707 | switch (level) { |
6708 | case IFNET_THROTTLE_OFF: | |
6709 | case IFNET_THROTTLE_OPPORTUNISTIC: | |
6710 | #if PF_ALTQ | |
6711 | /* Throttling works only for IFCQ, not ALTQ instances */ | |
6712 | if (ALTQ_IS_ENABLED(IFCQ_ALTQ(ifq))) | |
6713 | return (ENXIO); | |
6714 | #endif /* PF_ALTQ */ | |
6715 | break; | |
6716 | default: | |
6717 | return (EINVAL); | |
6718 | } | |
6719 | ||
316670eb A |
6720 | IFCQ_LOCK(ifq); |
6721 | if (IFCQ_IS_ENABLED(ifq)) | |
6722 | IFCQ_SET_THROTTLE(ifq, level, err); | |
6723 | IFCQ_UNLOCK(ifq); | |
6724 | ||
6725 | if (err == 0) { | |
39236c6e A |
6726 | printf("%s: throttling level set to %d\n", if_name(ifp), |
6727 | level); | |
316670eb A |
6728 | if (level == IFNET_THROTTLE_OFF) |
6729 | ifnet_start(ifp); | |
6730 | } | |
6731 | ||
6732 | return (err); | |
6733 | } | |
39236c6e A |
6734 | |
6735 | errno_t | |
6736 | ifnet_getset_log(ifnet_t ifp, u_long cmd, struct ifreq *ifr, | |
6737 | struct proc *p) | |
6738 | { | |
6739 | #pragma unused(p) | |
6740 | errno_t result = 0; | |
6741 | uint32_t flags; | |
6742 | int level, category, subcategory; | |
6743 | ||
6744 | VERIFY(cmd == SIOCSIFLOG || cmd == SIOCGIFLOG); | |
6745 | ||
6746 | if (cmd == SIOCSIFLOG) { | |
6747 | if ((result = priv_check_cred(kauth_cred_get(), | |
6748 | PRIV_NET_INTERFACE_CONTROL, 0)) != 0) | |
6749 | return (result); | |
6750 | ||
6751 | level = ifr->ifr_log.ifl_level; | |
6752 | if (level < IFNET_LOG_MIN || level > IFNET_LOG_MAX) | |
6753 | result = EINVAL; | |
6754 | ||
6755 | flags = ifr->ifr_log.ifl_flags; | |
6756 | if ((flags &= IFNET_LOGF_MASK) == 0) | |
6757 | result = EINVAL; | |
6758 | ||
6759 | category = ifr->ifr_log.ifl_category; | |
6760 | subcategory = ifr->ifr_log.ifl_subcategory; | |
6761 | ||
6762 | if (result == 0) | |
6763 | result = ifnet_set_log(ifp, level, flags, | |
6764 | category, subcategory); | |
6765 | } else { | |
6766 | result = ifnet_get_log(ifp, &level, &flags, &category, | |
6767 | &subcategory); | |
6768 | if (result == 0) { | |
6769 | ifr->ifr_log.ifl_level = level; | |
6770 | ifr->ifr_log.ifl_flags = flags; | |
6771 | ifr->ifr_log.ifl_category = category; | |
6772 | ifr->ifr_log.ifl_subcategory = subcategory; | |
6773 | } | |
6774 | } | |
6775 | ||
6776 | return (result); | |
6777 | } | |
6778 | ||
6779 | int | |
6780 | ifnet_set_log(struct ifnet *ifp, int32_t level, uint32_t flags, | |
6781 | int32_t category, int32_t subcategory) | |
6782 | { | |
6783 | int err = 0; | |
6784 | ||
6785 | VERIFY(level >= IFNET_LOG_MIN && level <= IFNET_LOG_MAX); | |
6786 | VERIFY(flags & IFNET_LOGF_MASK); | |
6787 | ||
6788 | /* | |
6789 | * The logging level applies to all facilities; make sure to | |
6790 | * update them all with the most current level. | |
6791 | */ | |
6792 | flags |= ifp->if_log.flags; | |
6793 | ||
6794 | if (ifp->if_output_ctl != NULL) { | |
6795 | struct ifnet_log_params l; | |
6796 | ||
6797 | bzero(&l, sizeof (l)); | |
6798 | l.level = level; | |
6799 | l.flags = flags; | |
6800 | l.flags &= ~IFNET_LOGF_DLIL; | |
6801 | l.category = category; | |
6802 | l.subcategory = subcategory; | |
6803 | ||
6804 | /* Send this request to lower layers */ | |
6805 | if (l.flags != 0) { | |
6806 | err = ifp->if_output_ctl(ifp, IFNET_CTL_SET_LOG, | |
6807 | sizeof (l), &l); | |
6808 | } | |
6809 | } else if ((flags & ~IFNET_LOGF_DLIL) && ifp->if_output_ctl == NULL) { | |
6810 | /* | |
6811 | * If targeted to the lower layers without an output | |
6812 | * control callback registered on the interface, just | |
6813 | * silently ignore facilities other than ours. | |
6814 | */ | |
6815 | flags &= IFNET_LOGF_DLIL; | |
6816 | if (flags == 0 && (!ifp->if_log.flags & IFNET_LOGF_DLIL)) | |
6817 | level = 0; | |
6818 | } | |
6819 | ||
6820 | if (err == 0) { | |
6821 | if ((ifp->if_log.level = level) == IFNET_LOG_DEFAULT) | |
6822 | ifp->if_log.flags = 0; | |
6823 | else | |
6824 | ifp->if_log.flags |= flags; | |
6825 | ||
6826 | log(LOG_INFO, "%s: logging level set to %d flags=%b " | |
6827 | "arg=%b, category=%d subcategory=%d\n", if_name(ifp), | |
6828 | ifp->if_log.level, ifp->if_log.flags, | |
6829 | IFNET_LOGF_BITS, flags, IFNET_LOGF_BITS, | |
6830 | category, subcategory); | |
6831 | } | |
6832 | ||
6833 | return (err); | |
6834 | } | |
6835 | ||
6836 | int | |
6837 | ifnet_get_log(struct ifnet *ifp, int32_t *level, uint32_t *flags, | |
6838 | int32_t *category, int32_t *subcategory) | |
6839 | { | |
6840 | if (level != NULL) | |
6841 | *level = ifp->if_log.level; | |
6842 | if (flags != NULL) | |
6843 | *flags = ifp->if_log.flags; | |
6844 | if (category != NULL) | |
6845 | *category = ifp->if_log.category; | |
6846 | if (subcategory != NULL) | |
6847 | *subcategory = ifp->if_log.subcategory; | |
6848 | ||
6849 | return (0); | |
6850 | } | |
6851 | ||
6852 | int | |
6853 | ifnet_notify_address(struct ifnet *ifp, int af) | |
6854 | { | |
6855 | struct ifnet_notify_address_params na; | |
6856 | ||
6857 | #if PF | |
6858 | (void) pf_ifaddr_hook(ifp); | |
6859 | #endif /* PF */ | |
6860 | ||
6861 | if (ifp->if_output_ctl == NULL) | |
6862 | return (EOPNOTSUPP); | |
6863 | ||
6864 | bzero(&na, sizeof (na)); | |
6865 | na.address_family = af; | |
6866 | ||
6867 | return (ifp->if_output_ctl(ifp, IFNET_CTL_NOTIFY_ADDRESS, | |
6868 | sizeof (na), &na)); | |
6869 | } | |
6870 | ||
6871 | errno_t | |
6872 | ifnet_flowid(struct ifnet *ifp, uint32_t *flowid) | |
6873 | { | |
6874 | if (ifp == NULL || flowid == NULL) { | |
6875 | return (EINVAL); | |
6876 | } else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
6877 | !(ifp->if_refflags & IFRF_ATTACHED)) { | |
6878 | return (ENXIO); | |
6879 | } | |
6880 | ||
6881 | *flowid = ifp->if_flowhash; | |
6882 | ||
6883 | return (0); | |
6884 | } | |
6885 | ||
6886 | errno_t | |
6887 | ifnet_disable_output(struct ifnet *ifp) | |
6888 | { | |
6889 | int err; | |
6890 | ||
6891 | if (ifp == NULL) { | |
6892 | return (EINVAL); | |
6893 | } else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
6894 | !(ifp->if_refflags & IFRF_ATTACHED)) { | |
6895 | return (ENXIO); | |
6896 | } | |
6897 | ||
6898 | if ((err = ifnet_fc_add(ifp)) == 0) { | |
6899 | lck_mtx_lock_spin(&ifp->if_start_lock); | |
6900 | ifp->if_start_flags |= IFSF_FLOW_CONTROLLED; | |
6901 | lck_mtx_unlock(&ifp->if_start_lock); | |
6902 | } | |
6903 | return (err); | |
6904 | } | |
6905 | ||
6906 | errno_t | |
6907 | ifnet_enable_output(struct ifnet *ifp) | |
6908 | { | |
6909 | if (ifp == NULL) { | |
6910 | return (EINVAL); | |
6911 | } else if (!(ifp->if_eflags & IFEF_TXSTART) || | |
6912 | !(ifp->if_refflags & IFRF_ATTACHED)) { | |
6913 | return (ENXIO); | |
6914 | } | |
6915 | ||
6916 | ifnet_start_common(ifp, 1); | |
6917 | return (0); | |
6918 | } | |
6919 | ||
6920 | void | |
6921 | ifnet_flowadv(uint32_t flowhash) | |
6922 | { | |
6923 | struct ifnet_fc_entry *ifce; | |
6924 | struct ifnet *ifp; | |
6925 | ||
6926 | ifce = ifnet_fc_get(flowhash); | |
6927 | if (ifce == NULL) | |
6928 | return; | |
6929 | ||
6930 | VERIFY(ifce->ifce_ifp != NULL); | |
6931 | ifp = ifce->ifce_ifp; | |
6932 | ||
6933 | /* flow hash gets recalculated per attach, so check */ | |
6934 | if (ifnet_is_attached(ifp, 1)) { | |
6935 | if (ifp->if_flowhash == flowhash) | |
6936 | (void) ifnet_enable_output(ifp); | |
6937 | ifnet_decr_iorefcnt(ifp); | |
6938 | } | |
6939 | ifnet_fc_entry_free(ifce); | |
6940 | } | |
6941 | ||
6942 | /* | |
6943 | * Function to compare ifnet_fc_entries in ifnet flow control tree | |
6944 | */ | |
6945 | static inline int | |
6946 | ifce_cmp(const struct ifnet_fc_entry *fc1, const struct ifnet_fc_entry *fc2) | |
6947 | { | |
6948 | return (fc1->ifce_flowhash - fc2->ifce_flowhash); | |
6949 | } | |
6950 | ||
6951 | static int | |
6952 | ifnet_fc_add(struct ifnet *ifp) | |
6953 | { | |
6954 | struct ifnet_fc_entry keyfc, *ifce; | |
6955 | uint32_t flowhash; | |
6956 | ||
6957 | VERIFY(ifp != NULL && (ifp->if_eflags & IFEF_TXSTART)); | |
6958 | VERIFY(ifp->if_flowhash != 0); | |
6959 | flowhash = ifp->if_flowhash; | |
6960 | ||
6961 | bzero(&keyfc, sizeof (keyfc)); | |
6962 | keyfc.ifce_flowhash = flowhash; | |
6963 | ||
6964 | lck_mtx_lock_spin(&ifnet_fc_lock); | |
6965 | ifce = RB_FIND(ifnet_fc_tree, &ifnet_fc_tree, &keyfc); | |
6966 | if (ifce != NULL && ifce->ifce_ifp == ifp) { | |
6967 | /* Entry is already in ifnet_fc_tree, return */ | |
6968 | lck_mtx_unlock(&ifnet_fc_lock); | |
6969 | return (0); | |
6970 | } | |
6971 | ||
6972 | if (ifce != NULL) { | |
6973 | /* | |
6974 | * There is a different fc entry with the same flow hash | |
6975 | * but different ifp pointer. There can be a collision | |
6976 | * on flow hash but the probability is low. Let's just | |
6977 | * avoid adding a second one when there is a collision. | |
6978 | */ | |
6979 | lck_mtx_unlock(&ifnet_fc_lock); | |
6980 | return (EAGAIN); | |
6981 | } | |
6982 | ||
6983 | /* become regular mutex */ | |
6984 | lck_mtx_convert_spin(&ifnet_fc_lock); | |
6985 | ||
6986 | ifce = zalloc_noblock(ifnet_fc_zone); | |
6987 | if (ifce == NULL) { | |
6988 | /* memory allocation failed */ | |
6989 | lck_mtx_unlock(&ifnet_fc_lock); | |
6990 | return (ENOMEM); | |
6991 | } | |
6992 | bzero(ifce, ifnet_fc_zone_size); | |
6993 | ||
6994 | ifce->ifce_flowhash = flowhash; | |
6995 | ifce->ifce_ifp = ifp; | |
6996 | ||
6997 | RB_INSERT(ifnet_fc_tree, &ifnet_fc_tree, ifce); | |
6998 | lck_mtx_unlock(&ifnet_fc_lock); | |
6999 | return (0); | |
7000 | } | |
7001 | ||
7002 | static struct ifnet_fc_entry * | |
7003 | ifnet_fc_get(uint32_t flowhash) | |
7004 | { | |
7005 | struct ifnet_fc_entry keyfc, *ifce; | |
7006 | struct ifnet *ifp; | |
7007 | ||
7008 | bzero(&keyfc, sizeof (keyfc)); | |
7009 | keyfc.ifce_flowhash = flowhash; | |
7010 | ||
7011 | lck_mtx_lock_spin(&ifnet_fc_lock); | |
7012 | ifce = RB_FIND(ifnet_fc_tree, &ifnet_fc_tree, &keyfc); | |
7013 | if (ifce == NULL) { | |
7014 | /* Entry is not present in ifnet_fc_tree, return */ | |
7015 | lck_mtx_unlock(&ifnet_fc_lock); | |
7016 | return (NULL); | |
7017 | } | |
7018 | ||
7019 | RB_REMOVE(ifnet_fc_tree, &ifnet_fc_tree, ifce); | |
7020 | ||
7021 | VERIFY(ifce->ifce_ifp != NULL); | |
7022 | ifp = ifce->ifce_ifp; | |
7023 | ||
7024 | /* become regular mutex */ | |
7025 | lck_mtx_convert_spin(&ifnet_fc_lock); | |
7026 | ||
7027 | if (!ifnet_is_attached(ifp, 0)) { | |
7028 | /* | |
7029 | * This ifp is not attached or in the process of being | |
7030 | * detached; just don't process it. | |
7031 | */ | |
7032 | ifnet_fc_entry_free(ifce); | |
7033 | ifce = NULL; | |
7034 | } | |
7035 | lck_mtx_unlock(&ifnet_fc_lock); | |
7036 | ||
7037 | return (ifce); | |
7038 | } | |
7039 | ||
7040 | static void | |
7041 | ifnet_fc_entry_free(struct ifnet_fc_entry *ifce) | |
7042 | { | |
7043 | zfree(ifnet_fc_zone, ifce); | |
7044 | } | |
7045 | ||
7046 | static uint32_t | |
7047 | ifnet_calc_flowhash(struct ifnet *ifp) | |
7048 | { | |
7049 | struct ifnet_flowhash_key fh __attribute__((aligned(8))); | |
7050 | uint32_t flowhash = 0; | |
7051 | ||
7052 | if (ifnet_flowhash_seed == 0) | |
7053 | ifnet_flowhash_seed = RandomULong(); | |
7054 | ||
7055 | bzero(&fh, sizeof (fh)); | |
7056 | ||
7057 | (void) snprintf(fh.ifk_name, sizeof (fh.ifk_name), "%s", ifp->if_name); | |
7058 | fh.ifk_unit = ifp->if_unit; | |
7059 | fh.ifk_flags = ifp->if_flags; | |
7060 | fh.ifk_eflags = ifp->if_eflags; | |
7061 | fh.ifk_capabilities = ifp->if_capabilities; | |
7062 | fh.ifk_capenable = ifp->if_capenable; | |
7063 | fh.ifk_output_sched_model = ifp->if_output_sched_model; | |
7064 | fh.ifk_rand1 = RandomULong(); | |
7065 | fh.ifk_rand2 = RandomULong(); | |
7066 | ||
7067 | try_again: | |
7068 | flowhash = net_flowhash(&fh, sizeof (fh), ifnet_flowhash_seed); | |
7069 | if (flowhash == 0) { | |
7070 | /* try to get a non-zero flowhash */ | |
7071 | ifnet_flowhash_seed = RandomULong(); | |
7072 | goto try_again; | |
7073 | } | |
7074 | ||
7075 | return (flowhash); | |
7076 | } | |
7077 | ||
7078 | static void | |
7079 | dlil_output_cksum_dbg(struct ifnet *ifp, struct mbuf *m, uint32_t hoff, | |
7080 | protocol_family_t pf) | |
7081 | { | |
7082 | #pragma unused(ifp) | |
7083 | uint32_t did_sw; | |
7084 | ||
7085 | if (!(hwcksum_dbg_mode & HWCKSUM_DBG_FINALIZE_FORCED) || | |
7086 | (m->m_pkthdr.csum_flags & (CSUM_TSO_IPV4|CSUM_TSO_IPV6))) | |
7087 | return; | |
7088 | ||
7089 | switch (pf) { | |
7090 | case PF_INET: | |
7091 | did_sw = in_finalize_cksum(m, hoff, m->m_pkthdr.csum_flags); | |
7092 | if (did_sw & CSUM_DELAY_IP) | |
7093 | hwcksum_dbg_finalized_hdr++; | |
7094 | if (did_sw & CSUM_DELAY_DATA) | |
7095 | hwcksum_dbg_finalized_data++; | |
7096 | break; | |
7097 | #if INET6 | |
7098 | case PF_INET6: | |
7099 | /* | |
7100 | * Checksum offload should not have been enabled when | |
7101 | * extension headers exist; that also means that we | |
7102 | * cannot force-finalize packets with extension headers. | |
7103 | * Indicate to the callee should it skip such case by | |
7104 | * setting optlen to -1. | |
7105 | */ | |
7106 | did_sw = in6_finalize_cksum(m, hoff, -1, -1, | |
7107 | m->m_pkthdr.csum_flags); | |
7108 | if (did_sw & CSUM_DELAY_IPV6_DATA) | |
7109 | hwcksum_dbg_finalized_data++; | |
7110 | break; | |
7111 | #endif /* INET6 */ | |
7112 | default: | |
7113 | return; | |
7114 | } | |
7115 | } | |
7116 | ||
7117 | static void | |
7118 | dlil_input_cksum_dbg(struct ifnet *ifp, struct mbuf *m, char *frame_header, | |
7119 | protocol_family_t pf) | |
7120 | { | |
7121 | uint16_t sum; | |
7122 | uint32_t hlen; | |
7123 | ||
7124 | if (frame_header == NULL || | |
7125 | frame_header < (char *)mbuf_datastart(m) || | |
7126 | frame_header > (char *)m->m_data) { | |
7127 | printf("%s: frame header pointer 0x%llx out of range " | |
7128 | "[0x%llx,0x%llx] for mbuf 0x%llx\n", if_name(ifp), | |
7129 | (uint64_t)VM_KERNEL_ADDRPERM(frame_header), | |
7130 | (uint64_t)VM_KERNEL_ADDRPERM(mbuf_datastart(m)), | |
7131 | (uint64_t)VM_KERNEL_ADDRPERM(m->m_data), | |
7132 | (uint64_t)VM_KERNEL_ADDRPERM(m)); | |
7133 | return; | |
7134 | } | |
7135 | hlen = (m->m_data - frame_header); | |
7136 | ||
7137 | switch (pf) { | |
7138 | case PF_INET: | |
7139 | #if INET6 | |
7140 | case PF_INET6: | |
7141 | #endif /* INET6 */ | |
7142 | break; | |
7143 | default: | |
7144 | return; | |
7145 | } | |
7146 | ||
7147 | /* | |
7148 | * Force partial checksum offload; useful to simulate cases | |
7149 | * where the hardware does not support partial checksum offload, | |
7150 | * in order to validate correctness throughout the layers above. | |
7151 | */ | |
7152 | if (hwcksum_dbg_mode & HWCKSUM_DBG_PARTIAL_FORCED) { | |
7153 | uint32_t foff = hwcksum_dbg_partial_rxoff_forced; | |
7154 | ||
7155 | if (foff > (uint32_t)m->m_pkthdr.len) | |
7156 | return; | |
7157 | ||
7158 | m->m_pkthdr.csum_flags &= ~CSUM_RX_FLAGS; | |
7159 | ||
7160 | /* Compute 16-bit 1's complement sum from forced offset */ | |
7161 | sum = m_sum16(m, foff, (m->m_pkthdr.len - foff)); | |
7162 | ||
7163 | m->m_pkthdr.csum_flags |= (CSUM_DATA_VALID | CSUM_PARTIAL); | |
7164 | m->m_pkthdr.csum_rx_val = sum; | |
7165 | m->m_pkthdr.csum_rx_start = (foff + hlen); | |
7166 | ||
7167 | hwcksum_dbg_partial_forced++; | |
7168 | hwcksum_dbg_partial_forced_bytes += m->m_pkthdr.len; | |
7169 | } | |
7170 | ||
7171 | /* | |
7172 | * Partial checksum offload verification (and adjustment); | |
7173 | * useful to validate and test cases where the hardware | |
7174 | * supports partial checksum offload. | |
7175 | */ | |
7176 | if ((m->m_pkthdr.csum_flags & | |
7177 | (CSUM_DATA_VALID | CSUM_PARTIAL | CSUM_PSEUDO_HDR)) == | |
7178 | (CSUM_DATA_VALID | CSUM_PARTIAL)) { | |
7179 | uint32_t rxoff; | |
7180 | ||
7181 | /* Start offset must begin after frame header */ | |
7182 | rxoff = m->m_pkthdr.csum_rx_start; | |
7183 | if (hlen > rxoff) { | |
7184 | hwcksum_dbg_bad_rxoff++; | |
7185 | if (dlil_verbose) { | |
7186 | printf("%s: partial cksum start offset %d " | |
7187 | "is less than frame header length %d for " | |
7188 | "mbuf 0x%llx\n", if_name(ifp), rxoff, hlen, | |
7189 | (uint64_t)VM_KERNEL_ADDRPERM(m)); | |
7190 | } | |
7191 | return; | |
7192 | } | |
7193 | rxoff -=hlen; | |
7194 | ||
7195 | if (!(hwcksum_dbg_mode & HWCKSUM_DBG_PARTIAL_FORCED)) { | |
7196 | /* | |
7197 | * Compute the expected 16-bit 1's complement sum; | |
7198 | * skip this if we've already computed it above | |
7199 | * when partial checksum offload is forced. | |
7200 | */ | |
7201 | sum = m_sum16(m, rxoff, (m->m_pkthdr.len - rxoff)); | |
7202 | ||
7203 | /* Hardware or driver is buggy */ | |
7204 | if (sum != m->m_pkthdr.csum_rx_val) { | |
7205 | hwcksum_dbg_bad_cksum++; | |
7206 | if (dlil_verbose) { | |
7207 | printf("%s: bad partial cksum value " | |
7208 | "0x%x (expected 0x%x) for mbuf " | |
7209 | "0x%llx [rx_start %d]\n", | |
7210 | if_name(ifp), | |
7211 | m->m_pkthdr.csum_rx_val, sum, | |
7212 | (uint64_t)VM_KERNEL_ADDRPERM(m), | |
7213 | m->m_pkthdr.csum_rx_start); | |
7214 | } | |
7215 | return; | |
7216 | } | |
7217 | } | |
7218 | hwcksum_dbg_verified++; | |
7219 | ||
7220 | /* | |
7221 | * This code allows us to emulate various hardwares that | |
7222 | * perform 16-bit 1's complement sum beginning at various | |
7223 | * start offset values. | |
7224 | */ | |
7225 | if (hwcksum_dbg_mode & HWCKSUM_DBG_PARTIAL_RXOFF_ADJ) { | |
7226 | uint32_t aoff = hwcksum_dbg_partial_rxoff_adj; | |
7227 | ||
7228 | if (aoff == rxoff || aoff > (uint32_t)m->m_pkthdr.len) | |
7229 | return; | |
7230 | ||
7231 | sum = m_adj_sum16(m, rxoff, aoff, sum); | |
7232 | ||
7233 | m->m_pkthdr.csum_rx_val = sum; | |
7234 | m->m_pkthdr.csum_rx_start = (aoff + hlen); | |
7235 | ||
7236 | hwcksum_dbg_adjusted++; | |
7237 | } | |
7238 | } | |
7239 | } | |
7240 | ||
7241 | static int | |
7242 | sysctl_hwcksum_dbg_mode SYSCTL_HANDLER_ARGS | |
7243 | { | |
7244 | #pragma unused(arg1, arg2) | |
7245 | u_int32_t i; | |
7246 | int err; | |
7247 | ||
7248 | i = hwcksum_dbg_mode; | |
7249 | ||
7250 | err = sysctl_handle_int(oidp, &i, 0, req); | |
7251 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
7252 | return (err); | |
7253 | ||
7254 | if (hwcksum_dbg == 0) | |
7255 | return (ENODEV); | |
7256 | ||
7257 | if ((i & ~HWCKSUM_DBG_MASK) != 0) | |
7258 | return (EINVAL); | |
7259 | ||
7260 | hwcksum_dbg_mode = (i & HWCKSUM_DBG_MASK); | |
7261 | ||
7262 | return (err); | |
7263 | } | |
7264 | ||
7265 | static int | |
7266 | sysctl_hwcksum_dbg_partial_rxoff_forced SYSCTL_HANDLER_ARGS | |
7267 | { | |
7268 | #pragma unused(arg1, arg2) | |
7269 | u_int32_t i; | |
7270 | int err; | |
7271 | ||
7272 | i = hwcksum_dbg_partial_rxoff_forced; | |
7273 | ||
7274 | err = sysctl_handle_int(oidp, &i, 0, req); | |
7275 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
7276 | return (err); | |
7277 | ||
7278 | if (!(hwcksum_dbg_mode & HWCKSUM_DBG_PARTIAL_FORCED)) | |
7279 | return (ENODEV); | |
7280 | ||
7281 | hwcksum_dbg_partial_rxoff_forced = i; | |
7282 | ||
7283 | return (err); | |
7284 | } | |
7285 | ||
7286 | static int | |
7287 | sysctl_hwcksum_dbg_partial_rxoff_adj SYSCTL_HANDLER_ARGS | |
7288 | { | |
7289 | #pragma unused(arg1, arg2) | |
7290 | u_int32_t i; | |
7291 | int err; | |
7292 | ||
7293 | i = hwcksum_dbg_partial_rxoff_adj; | |
7294 | ||
7295 | err = sysctl_handle_int(oidp, &i, 0, req); | |
7296 | if (err != 0 || req->newptr == USER_ADDR_NULL) | |
7297 | return (err); | |
7298 | ||
7299 | if (!(hwcksum_dbg_mode & HWCKSUM_DBG_PARTIAL_RXOFF_ADJ)) | |
7300 | return (ENODEV); | |
7301 | ||
7302 | hwcksum_dbg_partial_rxoff_adj = i; | |
7303 | ||
7304 | return (err); | |
7305 | } | |
7306 | ||
7307 | #if DEBUG | |
7308 | /* Blob for sum16 verification */ | |
7309 | static uint8_t sumdata[] = { | |
7310 | 0x1f, 0x8b, 0x08, 0x08, 0x4c, 0xe5, 0x9a, 0x4f, 0x00, 0x03, | |
7311 | 0x5f, 0x00, 0x5d, 0x91, 0x41, 0x4e, 0xc4, 0x30, 0x0c, 0x45, | |
7312 | 0xf7, 0x9c, 0xc2, 0x07, 0x18, 0xf5, 0x0e, 0xb0, 0xe2, 0x00, | |
7313 | 0x48, 0x88, 0xa5, 0xdb, 0xba, 0x49, 0x34, 0x69, 0xdc, 0x71, | |
7314 | 0x92, 0xa9, 0xc2, 0x8a, 0x6b, 0x70, 0x3d, 0x4e, 0x82, 0x93, | |
7315 | 0xb4, 0x08, 0xd8, 0xc5, 0xb1, 0xfd, 0xff, 0xb3, 0xfd, 0x4c, | |
7316 | 0x42, 0x5f, 0x1f, 0x9f, 0x11, 0x12, 0x43, 0xb2, 0x04, 0x93, | |
7317 | 0xe0, 0x7b, 0x01, 0x0e, 0x14, 0x07, 0x78, 0xd1, 0x78, 0x75, | |
7318 | 0x71, 0x71, 0xe9, 0x08, 0x84, 0x46, 0xf2, 0xc7, 0x3b, 0x09, | |
7319 | 0xe7, 0xd1, 0xd3, 0x8a, 0x57, 0x92, 0x33, 0xcd, 0x39, 0xcc, | |
7320 | 0xb0, 0x91, 0x89, 0xe0, 0x42, 0x53, 0x8b, 0xb7, 0x8c, 0x42, | |
7321 | 0x60, 0xd9, 0x9f, 0x7a, 0x55, 0x19, 0x76, 0xcb, 0x10, 0x49, | |
7322 | 0x35, 0xac, 0x0b, 0x5a, 0x3c, 0xbb, 0x65, 0x51, 0x8c, 0x90, | |
7323 | 0x7c, 0x69, 0x45, 0x45, 0x81, 0xb4, 0x2b, 0x70, 0x82, 0x85, | |
7324 | 0x55, 0x91, 0x17, 0x90, 0xdc, 0x14, 0x1e, 0x35, 0x52, 0xdd, | |
7325 | 0x02, 0x16, 0xef, 0xb5, 0x40, 0x89, 0xe2, 0x46, 0x53, 0xad, | |
7326 | 0x93, 0x6e, 0x98, 0x30, 0xe5, 0x08, 0xb7, 0xcc, 0x03, 0xbc, | |
7327 | 0x71, 0x86, 0x09, 0x43, 0x0d, 0x52, 0xf5, 0xa2, 0xf5, 0xa2, | |
7328 | 0x56, 0x11, 0x8d, 0xa8, 0xf5, 0xee, 0x92, 0x3d, 0xfe, 0x8c, | |
7329 | 0x67, 0x71, 0x8b, 0x0e, 0x2d, 0x70, 0x77, 0xbe, 0xbe, 0xea, | |
7330 | 0xbf, 0x9a, 0x8d, 0x9c, 0x53, 0x53, 0xe5, 0xe0, 0x4b, 0x87, | |
7331 | 0x85, 0xd2, 0x45, 0x95, 0x30, 0xc1, 0xcc, 0xe0, 0x74, 0x54, | |
7332 | 0x13, 0x58, 0xe8, 0xe8, 0x79, 0xa2, 0x09, 0x73, 0xa4, 0x0e, | |
7333 | 0x39, 0x59, 0x0c, 0xe6, 0x9c, 0xb2, 0x4f, 0x06, 0x5b, 0x8e, | |
7334 | 0xcd, 0x17, 0x6c, 0x5e, 0x95, 0x4d, 0x70, 0xa2, 0x0a, 0xbf, | |
7335 | 0xa3, 0xcc, 0x03, 0xbc, 0x5a, 0xe7, 0x75, 0x06, 0x5e, 0x75, | |
7336 | 0xef, 0x58, 0x8e, 0x15, 0xd1, 0x0a, 0x18, 0xff, 0xdd, 0xe6, | |
7337 | 0x02, 0x3b, 0xb5, 0xb4, 0xa1, 0xe0, 0x72, 0xfc, 0xe3, 0xab, | |
7338 | 0x07, 0xe0, 0x4d, 0x65, 0xea, 0x92, 0xeb, 0xf2, 0x7b, 0x17, | |
7339 | 0x05, 0xce, 0xc6, 0xf6, 0x2b, 0xbb, 0x70, 0x3d, 0x00, 0x95, | |
7340 | 0xe0, 0x07, 0x52, 0x3b, 0x58, 0xfc, 0x7c, 0x69, 0x4d, 0xe9, | |
7341 | 0xf7, 0xa9, 0x66, 0x1e, 0x1e, 0xbe, 0x01, 0x69, 0x98, 0xfe, | |
7342 | 0xc8, 0x28, 0x02, 0x00, 0x00 | |
7343 | }; | |
7344 | ||
7345 | /* Precomputed 16-bit 1's complement sums for various spans of the above data */ | |
7346 | static struct { | |
7347 | int len; | |
7348 | uint16_t sum; | |
7349 | } sumtbl[] = { | |
7350 | { 11, 0xcb6d }, | |
7351 | { 20, 0x20dd }, | |
7352 | { 27, 0xbabd }, | |
7353 | { 32, 0xf3e8 }, | |
7354 | { 37, 0x197d }, | |
7355 | { 43, 0x9eae }, | |
7356 | { 64, 0x4678 }, | |
7357 | { 127, 0x9399 }, | |
7358 | { 256, 0xd147 }, | |
7359 | { 325, 0x0358 } | |
7360 | }; | |
7361 | #define SUMTBL_MAX ((int)sizeof (sumtbl) / (int)sizeof (sumtbl[0])) | |
7362 | ||
7363 | static void | |
7364 | dlil_verify_sum16(void) | |
7365 | { | |
7366 | struct mbuf *m; | |
7367 | uint8_t *buf; | |
7368 | int n; | |
7369 | ||
7370 | /* Make sure test data plus extra room for alignment fits in cluster */ | |
7371 | _CASSERT((sizeof (sumdata) + (sizeof (uint64_t) * 2)) <= MCLBYTES); | |
7372 | ||
7373 | m = m_getcl(M_WAITOK, MT_DATA, M_PKTHDR); | |
7374 | MH_ALIGN(m, sizeof (uint32_t)); /* 32-bit starting alignment */ | |
7375 | buf = mtod(m, uint8_t *); /* base address */ | |
7376 | ||
7377 | for (n = 0; n < SUMTBL_MAX; n++) { | |
7378 | uint16_t len = sumtbl[n].len; | |
7379 | int i; | |
7380 | ||
7381 | /* Verify for all possible alignments */ | |
7382 | for (i = 0; i < (int)sizeof (uint64_t); i++) { | |
7383 | uint16_t sum; | |
7384 | uint8_t *c; | |
7385 | ||
7386 | /* Copy over test data to mbuf */ | |
7387 | VERIFY(len <= sizeof (sumdata)); | |
7388 | c = buf + i; | |
7389 | bcopy(sumdata, c, len); | |
7390 | ||
7391 | /* Zero-offset test (align by data pointer) */ | |
7392 | m->m_data = (caddr_t)c; | |
7393 | m->m_len = len; | |
7394 | sum = m_sum16(m, 0, len); | |
7395 | ||
7396 | /* Something is horribly broken; stop now */ | |
7397 | if (sum != sumtbl[n].sum) { | |
7398 | panic("%s: broken m_sum16 for len=%d align=%d " | |
7399 | "sum=0x%04x [expected=0x%04x]\n", __func__, | |
7400 | len, i, sum, sumtbl[n].sum); | |
7401 | /* NOTREACHED */ | |
7402 | } | |
7403 | ||
7404 | /* Alignment test by offset (fixed data pointer) */ | |
7405 | m->m_data = (caddr_t)buf; | |
7406 | m->m_len = i + len; | |
7407 | sum = m_sum16(m, i, len); | |
7408 | ||
7409 | /* Something is horribly broken; stop now */ | |
7410 | if (sum != sumtbl[n].sum) { | |
7411 | panic("%s: broken m_sum16 for len=%d offset=%d " | |
7412 | "sum=0x%04x [expected=0x%04x]\n", __func__, | |
7413 | len, i, sum, sumtbl[n].sum); | |
7414 | /* NOTREACHED */ | |
7415 | } | |
7416 | #if INET | |
7417 | /* Simple sum16 contiguous buffer test by aligment */ | |
7418 | sum = b_sum16(c, len); | |
7419 | ||
7420 | /* Something is horribly broken; stop now */ | |
7421 | if (sum != sumtbl[n].sum) { | |
7422 | panic("%s: broken b_sum16 for len=%d align=%d " | |
7423 | "sum=0x%04x [expected=0x%04x]\n", __func__, | |
7424 | len, i, sum, sumtbl[n].sum); | |
7425 | /* NOTREACHED */ | |
7426 | } | |
7427 | #endif /* INET */ | |
7428 | } | |
7429 | } | |
7430 | m_freem(m); | |
7431 | ||
7432 | printf("DLIL: SUM16 self-tests PASSED\n"); | |
7433 | } | |
7434 | #endif /* DEBUG */ | |
7435 | ||
7436 | #define CASE_STRINGIFY(x) case x: return #x | |
7437 | ||
7438 | __private_extern__ const char * | |
7439 | dlil_kev_dl_code_str(u_int32_t event_code) | |
7440 | { | |
7441 | switch (event_code) { | |
7442 | CASE_STRINGIFY(KEV_DL_SIFFLAGS); | |
7443 | CASE_STRINGIFY(KEV_DL_SIFMETRICS); | |
7444 | CASE_STRINGIFY(KEV_DL_SIFMTU); | |
7445 | CASE_STRINGIFY(KEV_DL_SIFPHYS); | |
7446 | CASE_STRINGIFY(KEV_DL_SIFMEDIA); | |
7447 | CASE_STRINGIFY(KEV_DL_SIFGENERIC); | |
7448 | CASE_STRINGIFY(KEV_DL_ADDMULTI); | |
7449 | CASE_STRINGIFY(KEV_DL_DELMULTI); | |
7450 | CASE_STRINGIFY(KEV_DL_IF_ATTACHED); | |
7451 | CASE_STRINGIFY(KEV_DL_IF_DETACHING); | |
7452 | CASE_STRINGIFY(KEV_DL_IF_DETACHED); | |
7453 | CASE_STRINGIFY(KEV_DL_LINK_OFF); | |
7454 | CASE_STRINGIFY(KEV_DL_LINK_ON); | |
7455 | CASE_STRINGIFY(KEV_DL_PROTO_ATTACHED); | |
7456 | CASE_STRINGIFY(KEV_DL_PROTO_DETACHED); | |
7457 | CASE_STRINGIFY(KEV_DL_LINK_ADDRESS_CHANGED); | |
7458 | CASE_STRINGIFY(KEV_DL_WAKEFLAGS_CHANGED); | |
7459 | CASE_STRINGIFY(KEV_DL_IF_IDLE_ROUTE_REFCNT); | |
7460 | CASE_STRINGIFY(KEV_DL_IFCAP_CHANGED); | |
7461 | CASE_STRINGIFY(KEV_DL_LINK_QUALITY_METRIC_CHANGED); | |
7462 | CASE_STRINGIFY(KEV_DL_NODE_PRESENCE); | |
7463 | CASE_STRINGIFY(KEV_DL_NODE_ABSENCE); | |
7464 | CASE_STRINGIFY(KEV_DL_MASTER_ELECTED); | |
7465 | CASE_STRINGIFY(KEV_DL_ISSUES); | |
7466 | CASE_STRINGIFY(KEV_DL_IFDELEGATE_CHANGED); | |
7467 | default: | |
7468 | break; | |
7469 | } | |
7470 | return (""); | |
7471 | } |