]>
Commit | Line | Data |
---|---|---|
6d2010ae | 1 | /* |
39037602 | 2 | * Copyright (c) 2010-2016 Apple Inc. All rights reserved. |
6d2010ae A |
3 | * |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
39037602 | 5 | * |
6d2010ae 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. | |
39037602 | 14 | * |
6d2010ae A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
39037602 | 17 | * |
6d2010ae 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 | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
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. | |
39037602 | 25 | * |
6d2010ae A |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
27 | */ | |
28 | ||
29 | #include <sys/param.h> | |
30 | #include <sys/types.h> | |
31 | #include <sys/kpi_mbuf.h> | |
32 | #include <sys/socket.h> | |
33 | #include <sys/kern_control.h> | |
34 | #include <sys/mcache.h> | |
35 | #include <sys/socketvar.h> | |
36 | #include <sys/sysctl.h> | |
39236c6e A |
37 | #include <sys/queue.h> |
38 | #include <sys/priv.h> | |
fe8ab488 | 39 | #include <sys/protosw.h> |
6d2010ae A |
40 | |
41 | #include <kern/clock.h> | |
42 | #include <kern/debug.h> | |
43 | ||
44 | #include <libkern/libkern.h> | |
45 | #include <libkern/OSMalloc.h> | |
46 | #include <libkern/OSAtomic.h> | |
47 | #include <libkern/locks.h> | |
48 | ||
49 | #include <net/if.h> | |
39236c6e A |
50 | #include <net/if_var.h> |
51 | #include <net/if_types.h> | |
6d2010ae A |
52 | #include <net/route.h> |
53 | #include <net/ntstat.h> | |
54 | ||
55 | #include <netinet/ip_var.h> | |
56 | #include <netinet/in_pcb.h> | |
57 | #include <netinet/in_var.h> | |
58 | #include <netinet/tcp.h> | |
59 | #include <netinet/tcp_var.h> | |
60 | #include <netinet/tcp_fsm.h> | |
fe8ab488 | 61 | #include <netinet/tcp_cc.h> |
6d2010ae A |
62 | #include <netinet/udp.h> |
63 | #include <netinet/udp_var.h> | |
64 | #include <netinet6/in6_pcb.h> | |
65 | #include <netinet6/in6_var.h> | |
66 | ||
67 | __private_extern__ int nstat_collect = 1; | |
d190cdc3 A |
68 | |
69 | #if (DEBUG || DEVELOPMENT) | |
6d2010ae A |
70 | SYSCTL_INT(_net, OID_AUTO, statistics, CTLFLAG_RW | CTLFLAG_LOCKED, |
71 | &nstat_collect, 0, "Collect detailed statistics"); | |
d190cdc3 | 72 | #endif /* (DEBUG || DEVELOPMENT) */ |
6d2010ae | 73 | |
39236c6e A |
74 | static int nstat_privcheck = 0; |
75 | SYSCTL_INT(_net, OID_AUTO, statistics_privcheck, CTLFLAG_RW | CTLFLAG_LOCKED, | |
76 | &nstat_privcheck, 0, "Entitlement check"); | |
77 | ||
fe8ab488 A |
78 | SYSCTL_NODE(_net, OID_AUTO, stats, |
79 | CTLFLAG_RW|CTLFLAG_LOCKED, 0, "network statistics"); | |
80 | ||
81 | static int nstat_debug = 0; | |
82 | SYSCTL_INT(_net_stats, OID_AUTO, debug, CTLFLAG_RW | CTLFLAG_LOCKED, | |
83 | &nstat_debug, 0, ""); | |
84 | ||
85 | static int nstat_sendspace = 2048; | |
86 | SYSCTL_INT(_net_stats, OID_AUTO, sendspace, CTLFLAG_RW | CTLFLAG_LOCKED, | |
87 | &nstat_sendspace, 0, ""); | |
88 | ||
89 | static int nstat_recvspace = 8192; | |
90 | SYSCTL_INT(_net_stats, OID_AUTO, recvspace, CTLFLAG_RW | CTLFLAG_LOCKED, | |
91 | &nstat_recvspace, 0, ""); | |
92 | ||
3e170ce0 A |
93 | static struct nstat_stats nstat_stats; |
94 | SYSCTL_STRUCT(_net_stats, OID_AUTO, stats, CTLFLAG_RD | CTLFLAG_LOCKED, | |
95 | &nstat_stats, nstat_stats, ""); | |
fe8ab488 | 96 | |
316670eb A |
97 | enum |
98 | { | |
3e170ce0 A |
99 | NSTAT_FLAG_CLEANUP = (1 << 0), |
100 | NSTAT_FLAG_REQCOUNTS = (1 << 1), | |
101 | NSTAT_FLAG_SUPPORTS_UPDATES = (1 << 2), | |
102 | NSTAT_FLAG_SYSINFO_SUBSCRIBED = (1 << 3), | |
316670eb A |
103 | }; |
104 | ||
3e170ce0 A |
105 | #define QUERY_CONTINUATION_SRC_COUNT 100 |
106 | ||
39037602 A |
107 | typedef struct nstat_provider_filter |
108 | { | |
109 | u_int64_t npf_flags; | |
110 | u_int64_t npf_events; | |
111 | pid_t npf_pid; | |
112 | uuid_t npf_uuid; | |
113 | } nstat_provider_filter; | |
114 | ||
115 | ||
6d2010ae A |
116 | typedef struct nstat_control_state |
117 | { | |
316670eb | 118 | struct nstat_control_state *ncs_next; |
39037602 | 119 | u_int32_t ncs_watching; |
6d2010ae | 120 | decl_lck_mtx_data(, mtx); |
39236c6e | 121 | kern_ctl_ref ncs_kctl; |
39037602 | 122 | u_int32_t ncs_unit; |
39236c6e A |
123 | nstat_src_ref_t ncs_next_srcref; |
124 | struct nstat_src *ncs_srcs; | |
39037602 A |
125 | mbuf_t ncs_accumulated; |
126 | u_int32_t ncs_flags; | |
127 | nstat_provider_filter ncs_provider_filters[NSTAT_PROVIDER_COUNT]; | |
3e170ce0 | 128 | /* state maintained for partial query requests */ |
39037602 A |
129 | u_int64_t ncs_context; |
130 | u_int64_t ncs_seq; | |
6d2010ae A |
131 | } nstat_control_state; |
132 | ||
316670eb A |
133 | typedef struct nstat_provider |
134 | { | |
135 | struct nstat_provider *next; | |
136 | nstat_provider_id_t nstat_provider_id; | |
137 | size_t nstat_descriptor_length; | |
138 | errno_t (*nstat_lookup)(const void *data, u_int32_t length, nstat_provider_cookie_t *out_cookie); | |
139 | int (*nstat_gone)(nstat_provider_cookie_t cookie); | |
140 | errno_t (*nstat_counts)(nstat_provider_cookie_t cookie, struct nstat_counts *out_counts, int *out_gone); | |
141 | errno_t (*nstat_watcher_add)(nstat_control_state *state); | |
142 | void (*nstat_watcher_remove)(nstat_control_state *state); | |
143 | errno_t (*nstat_copy_descriptor)(nstat_provider_cookie_t cookie, void *data, u_int32_t len); | |
144 | void (*nstat_release)(nstat_provider_cookie_t cookie, boolean_t locked); | |
39037602 | 145 | bool (*nstat_reporting_allowed)(nstat_provider_cookie_t cookie, nstat_provider_filter *filter); |
316670eb A |
146 | } nstat_provider; |
147 | ||
39037602 A |
148 | typedef STAILQ_HEAD(, nstat_src) stailq_head_nstat_src; |
149 | typedef STAILQ_ENTRY(nstat_src) stailq_entry_nstat_src; | |
150 | ||
151 | typedef TAILQ_HEAD(, nstat_tu_shadow) tailq_head_tu_shadow; | |
152 | typedef TAILQ_ENTRY(nstat_tu_shadow) tailq_entry_tu_shadow; | |
316670eb A |
153 | |
154 | typedef struct nstat_src | |
155 | { | |
156 | struct nstat_src *next; | |
157 | nstat_src_ref_t srcref; | |
158 | nstat_provider *provider; | |
39236c6e A |
159 | nstat_provider_cookie_t cookie; |
160 | uint32_t filter; | |
3e170ce0 | 161 | uint64_t seq; |
316670eb A |
162 | } nstat_src; |
163 | ||
164 | static errno_t nstat_control_send_counts(nstat_control_state *, | |
3e170ce0 A |
165 | nstat_src *, unsigned long long, u_int16_t, int *); |
166 | static int nstat_control_send_description(nstat_control_state *state, nstat_src *src, u_int64_t context, u_int16_t hdr_flags); | |
167 | static int nstat_control_send_update(nstat_control_state *state, nstat_src *src, u_int64_t context, u_int16_t hdr_flags, int *gone); | |
316670eb | 168 | static errno_t nstat_control_send_removed(nstat_control_state *, nstat_src *); |
3e170ce0 A |
169 | static errno_t nstat_control_send_goodbye(nstat_control_state *state, nstat_src *src); |
170 | static void nstat_control_cleanup_source(nstat_control_state *state, nstat_src *src, boolean_t); | |
171 | static bool nstat_control_reporting_allowed(nstat_control_state *state, nstat_src *src); | |
172 | static boolean_t nstat_control_begin_query(nstat_control_state *state, const nstat_msg_hdr *hdrp); | |
173 | static u_int16_t nstat_control_end_query(nstat_control_state *state, nstat_src *last_src, boolean_t partial); | |
4bd07ac2 | 174 | static void nstat_ifnet_report_ecn_stats(void); |
316670eb A |
175 | |
176 | static u_int32_t nstat_udp_watchers = 0; | |
39037602 | 177 | static u_int32_t nstat_userland_udp_watchers = 0; |
316670eb | 178 | static u_int32_t nstat_tcp_watchers = 0; |
39037602 | 179 | static u_int32_t nstat_userland_tcp_watchers = 0; |
316670eb | 180 | |
6d2010ae A |
181 | static void nstat_control_register(void); |
182 | ||
fe8ab488 A |
183 | /* |
184 | * The lock order is as follows: | |
185 | * | |
186 | * socket_lock (inpcb) | |
187 | * nstat_mtx | |
188 | * state->mtx | |
189 | */ | |
6d2010ae A |
190 | static volatile OSMallocTag nstat_malloc_tag = NULL; |
191 | static nstat_control_state *nstat_controls = NULL; | |
316670eb | 192 | static uint64_t nstat_idle_time = 0; |
6d2010ae A |
193 | static decl_lck_mtx_data(, nstat_mtx); |
194 | ||
fe8ab488 A |
195 | /* some extern definitions */ |
196 | extern void mbuf_report_peak_usage(void); | |
197 | extern void tcp_report_stats(void); | |
198 | ||
6d2010ae A |
199 | static void |
200 | nstat_copy_sa_out( | |
201 | const struct sockaddr *src, | |
202 | struct sockaddr *dst, | |
203 | int maxlen) | |
204 | { | |
205 | if (src->sa_len > maxlen) return; | |
39037602 | 206 | |
6d2010ae A |
207 | bcopy(src, dst, src->sa_len); |
208 | if (src->sa_family == AF_INET6 && | |
209 | src->sa_len >= sizeof(struct sockaddr_in6)) | |
210 | { | |
316670eb | 211 | struct sockaddr_in6 *sin6 = (struct sockaddr_in6*)(void *)dst; |
6d2010ae A |
212 | if (IN6_IS_SCOPE_EMBED(&sin6->sin6_addr)) |
213 | { | |
214 | if (sin6->sin6_scope_id == 0) | |
fe8ab488 A |
215 | sin6->sin6_scope_id = ntohs(sin6->sin6_addr.s6_addr16[1]); |
216 | sin6->sin6_addr.s6_addr16[1] = 0; | |
6d2010ae A |
217 | } |
218 | } | |
219 | } | |
220 | ||
221 | static void | |
222 | nstat_ip_to_sockaddr( | |
223 | const struct in_addr *ip, | |
224 | u_int16_t port, | |
225 | struct sockaddr_in *sin, | |
226 | u_int32_t maxlen) | |
227 | { | |
228 | if (maxlen < sizeof(struct sockaddr_in)) | |
229 | return; | |
39037602 | 230 | |
6d2010ae A |
231 | sin->sin_family = AF_INET; |
232 | sin->sin_len = sizeof(*sin); | |
233 | sin->sin_port = port; | |
234 | sin->sin_addr = *ip; | |
235 | } | |
236 | ||
237 | static void | |
238 | nstat_ip6_to_sockaddr( | |
239 | const struct in6_addr *ip6, | |
240 | u_int16_t port, | |
241 | struct sockaddr_in6 *sin6, | |
242 | u_int32_t maxlen) | |
243 | { | |
244 | if (maxlen < sizeof(struct sockaddr_in6)) | |
245 | return; | |
39037602 | 246 | |
6d2010ae A |
247 | sin6->sin6_family = AF_INET6; |
248 | sin6->sin6_len = sizeof(*sin6); | |
249 | sin6->sin6_port = port; | |
250 | sin6->sin6_addr = *ip6; | |
251 | if (IN6_IS_SCOPE_EMBED(&sin6->sin6_addr)) | |
252 | { | |
fe8ab488 A |
253 | sin6->sin6_scope_id = ntohs(sin6->sin6_addr.s6_addr16[1]); |
254 | sin6->sin6_addr.s6_addr16[1] = 0; | |
6d2010ae A |
255 | } |
256 | } | |
257 | ||
39037602 A |
258 | static u_int16_t |
259 | nstat_ifnet_to_flags( | |
260 | struct ifnet *ifp) | |
261 | { | |
262 | u_int16_t flags = 0; | |
263 | u_int32_t functional_type = if_functional_type(ifp, FALSE); | |
264 | ||
265 | /* Panic if someone adds a functional type without updating ntstat. */ | |
266 | VERIFY(0 <= functional_type && functional_type <= IFRTYPE_FUNCTIONAL_LAST); | |
267 | ||
268 | switch (functional_type) | |
269 | { | |
270 | case IFRTYPE_FUNCTIONAL_UNKNOWN: | |
271 | flags |= NSTAT_IFNET_IS_UNKNOWN_TYPE; | |
272 | break; | |
273 | case IFRTYPE_FUNCTIONAL_LOOPBACK: | |
274 | flags |= NSTAT_IFNET_IS_LOOPBACK; | |
275 | break; | |
276 | case IFRTYPE_FUNCTIONAL_WIRED: | |
743345f9 | 277 | case IFRTYPE_FUNCTIONAL_INTCOPROC: |
39037602 A |
278 | flags |= NSTAT_IFNET_IS_WIRED; |
279 | break; | |
280 | case IFRTYPE_FUNCTIONAL_WIFI_INFRA: | |
281 | flags |= NSTAT_IFNET_IS_WIFI; | |
282 | break; | |
283 | case IFRTYPE_FUNCTIONAL_WIFI_AWDL: | |
284 | flags |= NSTAT_IFNET_IS_WIFI; | |
285 | flags |= NSTAT_IFNET_IS_AWDL; | |
286 | break; | |
287 | case IFRTYPE_FUNCTIONAL_CELLULAR: | |
288 | flags |= NSTAT_IFNET_IS_CELLULAR; | |
289 | break; | |
290 | } | |
291 | ||
292 | if (IFNET_IS_EXPENSIVE(ifp)) | |
293 | { | |
294 | flags |= NSTAT_IFNET_IS_EXPENSIVE; | |
295 | } | |
296 | ||
297 | return flags; | |
298 | } | |
299 | ||
3e170ce0 A |
300 | static u_int16_t |
301 | nstat_inpcb_to_flags( | |
302 | const struct inpcb *inp) | |
303 | { | |
304 | u_int16_t flags = 0; | |
305 | ||
306 | if ((inp != NULL ) && (inp->inp_last_outifp != NULL)) | |
307 | { | |
308 | struct ifnet *ifp = inp->inp_last_outifp; | |
39037602 | 309 | flags = nstat_ifnet_to_flags(ifp); |
3e170ce0 | 310 | |
39037602 | 311 | if (flags & NSTAT_IFNET_IS_CELLULAR) |
3e170ce0 | 312 | { |
490019cf A |
313 | if (inp->inp_socket != NULL && |
314 | (inp->inp_socket->so_flags1 & SOF1_CELLFALLBACK)) | |
315 | flags |= NSTAT_IFNET_VIA_CELLFALLBACK; | |
3e170ce0 A |
316 | } |
317 | } | |
318 | else | |
319 | { | |
320 | flags = NSTAT_IFNET_IS_UNKNOWN_TYPE; | |
321 | } | |
322 | ||
323 | return flags; | |
324 | } | |
325 | ||
6d2010ae A |
326 | #pragma mark -- Network Statistic Providers -- |
327 | ||
6d2010ae A |
328 | static errno_t nstat_control_source_add(u_int64_t context, nstat_control_state *state, nstat_provider *provider, nstat_provider_cookie_t cookie); |
329 | struct nstat_provider *nstat_providers = NULL; | |
330 | ||
331 | static struct nstat_provider* | |
332 | nstat_find_provider_by_id( | |
333 | nstat_provider_id_t id) | |
334 | { | |
335 | struct nstat_provider *provider; | |
39037602 | 336 | |
6d2010ae A |
337 | for (provider = nstat_providers; provider != NULL; provider = provider->next) |
338 | { | |
339 | if (provider->nstat_provider_id == id) | |
340 | break; | |
341 | } | |
39037602 | 342 | |
6d2010ae A |
343 | return provider; |
344 | } | |
345 | ||
346 | static errno_t | |
347 | nstat_lookup_entry( | |
348 | nstat_provider_id_t id, | |
349 | const void *data, | |
350 | u_int32_t length, | |
351 | nstat_provider **out_provider, | |
352 | nstat_provider_cookie_t *out_cookie) | |
353 | { | |
354 | *out_provider = nstat_find_provider_by_id(id); | |
355 | if (*out_provider == NULL) | |
356 | { | |
6d2010ae A |
357 | return ENOENT; |
358 | } | |
39037602 | 359 | |
6d2010ae A |
360 | return (*out_provider)->nstat_lookup(data, length, out_cookie); |
361 | } | |
362 | ||
363 | static void nstat_init_route_provider(void); | |
364 | static void nstat_init_tcp_provider(void); | |
39037602 | 365 | static void nstat_init_userland_tcp_provider(void); |
6d2010ae | 366 | static void nstat_init_udp_provider(void); |
39037602 | 367 | static void nstat_init_userland_udp_provider(void); |
39236c6e | 368 | static void nstat_init_ifnet_provider(void); |
6d2010ae | 369 | |
316670eb | 370 | __private_extern__ void |
6d2010ae A |
371 | nstat_init(void) |
372 | { | |
373 | if (nstat_malloc_tag != NULL) return; | |
39037602 | 374 | |
6d2010ae A |
375 | OSMallocTag tag = OSMalloc_Tagalloc(NET_STAT_CONTROL_NAME, OSMT_DEFAULT); |
376 | if (!OSCompareAndSwapPtr(NULL, tag, &nstat_malloc_tag)) | |
377 | { | |
378 | OSMalloc_Tagfree(tag); | |
379 | tag = nstat_malloc_tag; | |
380 | } | |
381 | else | |
382 | { | |
383 | // we need to initialize other things, we do it here as this code path will only be hit once; | |
384 | nstat_init_route_provider(); | |
385 | nstat_init_tcp_provider(); | |
39037602 | 386 | nstat_init_userland_tcp_provider(); |
6d2010ae | 387 | nstat_init_udp_provider(); |
39037602 | 388 | nstat_init_userland_udp_provider(); |
39236c6e | 389 | nstat_init_ifnet_provider(); |
6d2010ae A |
390 | nstat_control_register(); |
391 | } | |
392 | } | |
393 | ||
394 | #pragma mark -- Aligned Buffer Allocation -- | |
395 | ||
396 | struct align_header | |
397 | { | |
398 | u_int32_t offset; | |
399 | u_int32_t length; | |
400 | }; | |
401 | ||
402 | static void* | |
403 | nstat_malloc_aligned( | |
404 | u_int32_t length, | |
405 | u_int8_t alignment, | |
406 | OSMallocTag tag) | |
407 | { | |
408 | struct align_header *hdr = NULL; | |
409 | u_int32_t size = length + sizeof(*hdr) + alignment - 1; | |
39037602 | 410 | |
6d2010ae A |
411 | u_int8_t *buffer = OSMalloc(size, tag); |
412 | if (buffer == NULL) return NULL; | |
39037602 | 413 | |
6d2010ae A |
414 | u_int8_t *aligned = buffer + sizeof(*hdr); |
415 | aligned = (u_int8_t*)P2ROUNDUP(aligned, alignment); | |
39037602 | 416 | |
316670eb | 417 | hdr = (struct align_header*)(void *)(aligned - sizeof(*hdr)); |
6d2010ae A |
418 | hdr->offset = aligned - buffer; |
419 | hdr->length = size; | |
39037602 | 420 | |
6d2010ae A |
421 | return aligned; |
422 | } | |
423 | ||
424 | static void | |
425 | nstat_free_aligned( | |
426 | void *buffer, | |
427 | OSMallocTag tag) | |
428 | { | |
316670eb | 429 | struct align_header *hdr = (struct align_header*)(void *)((u_int8_t*)buffer - sizeof(*hdr)); |
6d2010ae A |
430 | OSFree(((char*)buffer) - hdr->offset, hdr->length, tag); |
431 | } | |
432 | ||
433 | #pragma mark -- Route Provider -- | |
434 | ||
435 | static nstat_provider nstat_route_provider; | |
436 | ||
437 | static errno_t | |
438 | nstat_route_lookup( | |
439 | const void *data, | |
440 | u_int32_t length, | |
441 | nstat_provider_cookie_t *out_cookie) | |
442 | { | |
443 | // rt_lookup doesn't take const params but it doesn't modify the parameters for | |
444 | // the lookup. So...we use a union to eliminate the warning. | |
445 | union | |
446 | { | |
447 | struct sockaddr *sa; | |
448 | const struct sockaddr *const_sa; | |
449 | } dst, mask; | |
39037602 | 450 | |
6d2010ae A |
451 | const nstat_route_add_param *param = (const nstat_route_add_param*)data; |
452 | *out_cookie = NULL; | |
39037602 | 453 | |
6d2010ae A |
454 | if (length < sizeof(*param)) |
455 | { | |
6d2010ae A |
456 | return EINVAL; |
457 | } | |
39037602 | 458 | |
6d2010ae A |
459 | if (param->dst.v4.sin_family == 0 || |
460 | param->dst.v4.sin_family > AF_MAX || | |
461 | (param->mask.v4.sin_family != 0 && param->mask.v4.sin_family != param->dst.v4.sin_family)) | |
462 | { | |
6d2010ae A |
463 | return EINVAL; |
464 | } | |
39037602 | 465 | |
6d2010ae A |
466 | if (param->dst.v4.sin_len > sizeof(param->dst) || |
467 | (param->mask.v4.sin_family && param->mask.v4.sin_len > sizeof(param->mask.v4.sin_len))) | |
468 | { | |
316670eb | 469 | return EINVAL; |
6d2010ae | 470 | } |
fe8ab488 A |
471 | if ((param->dst.v4.sin_family == AF_INET && |
472 | param->dst.v4.sin_len < sizeof(struct sockaddr_in)) || | |
473 | (param->dst.v6.sin6_family == AF_INET6 && | |
474 | param->dst.v6.sin6_len < sizeof(struct sockaddr_in6))) | |
475 | { | |
476 | return EINVAL; | |
477 | } | |
39037602 | 478 | |
6d2010ae A |
479 | dst.const_sa = (const struct sockaddr*)¶m->dst; |
480 | mask.const_sa = param->mask.v4.sin_family ? (const struct sockaddr*)¶m->mask : NULL; | |
39037602 | 481 | |
6d2010ae A |
482 | struct radix_node_head *rnh = rt_tables[dst.sa->sa_family]; |
483 | if (rnh == NULL) return EAFNOSUPPORT; | |
39037602 | 484 | |
6d2010ae A |
485 | lck_mtx_lock(rnh_lock); |
486 | struct rtentry *rt = rt_lookup(TRUE, dst.sa, mask.sa, rnh, param->ifindex); | |
487 | lck_mtx_unlock(rnh_lock); | |
39037602 | 488 | |
6d2010ae | 489 | if (rt) *out_cookie = (nstat_provider_cookie_t)rt; |
39037602 | 490 | |
6d2010ae A |
491 | return rt ? 0 : ENOENT; |
492 | } | |
493 | ||
494 | static int | |
495 | nstat_route_gone( | |
496 | nstat_provider_cookie_t cookie) | |
497 | { | |
498 | struct rtentry *rt = (struct rtentry*)cookie; | |
499 | return ((rt->rt_flags & RTF_UP) == 0) ? 1 : 0; | |
500 | } | |
501 | ||
502 | static errno_t | |
503 | nstat_route_counts( | |
504 | nstat_provider_cookie_t cookie, | |
505 | struct nstat_counts *out_counts, | |
506 | int *out_gone) | |
507 | { | |
508 | struct rtentry *rt = (struct rtentry*)cookie; | |
509 | struct nstat_counts *rt_stats = rt->rt_stats; | |
39037602 | 510 | |
3e170ce0 | 511 | if (out_gone) *out_gone = 0; |
39037602 | 512 | |
3e170ce0 | 513 | if (out_gone && (rt->rt_flags & RTF_UP) == 0) *out_gone = 1; |
39037602 | 514 | |
6d2010ae A |
515 | if (rt_stats) |
516 | { | |
517 | atomic_get_64(out_counts->nstat_rxpackets, &rt_stats->nstat_rxpackets); | |
518 | atomic_get_64(out_counts->nstat_rxbytes, &rt_stats->nstat_rxbytes); | |
519 | atomic_get_64(out_counts->nstat_txpackets, &rt_stats->nstat_txpackets); | |
520 | atomic_get_64(out_counts->nstat_txbytes, &rt_stats->nstat_txbytes); | |
521 | out_counts->nstat_rxduplicatebytes = rt_stats->nstat_rxduplicatebytes; | |
522 | out_counts->nstat_rxoutoforderbytes = rt_stats->nstat_rxoutoforderbytes; | |
523 | out_counts->nstat_txretransmit = rt_stats->nstat_txretransmit; | |
524 | out_counts->nstat_connectattempts = rt_stats->nstat_connectattempts; | |
525 | out_counts->nstat_connectsuccesses = rt_stats->nstat_connectsuccesses; | |
526 | out_counts->nstat_min_rtt = rt_stats->nstat_min_rtt; | |
527 | out_counts->nstat_avg_rtt = rt_stats->nstat_avg_rtt; | |
528 | out_counts->nstat_var_rtt = rt_stats->nstat_var_rtt; | |
39236c6e | 529 | out_counts->nstat_cell_rxbytes = out_counts->nstat_cell_txbytes = 0; |
6d2010ae A |
530 | } |
531 | else | |
3e170ce0 | 532 | { |
6d2010ae | 533 | bzero(out_counts, sizeof(*out_counts)); |
3e170ce0 | 534 | } |
39037602 | 535 | |
6d2010ae A |
536 | return 0; |
537 | } | |
538 | ||
539 | static void | |
540 | nstat_route_release( | |
316670eb A |
541 | nstat_provider_cookie_t cookie, |
542 | __unused int locked) | |
6d2010ae A |
543 | { |
544 | rtfree((struct rtentry*)cookie); | |
545 | } | |
546 | ||
547 | static u_int32_t nstat_route_watchers = 0; | |
548 | ||
549 | static int | |
550 | nstat_route_walktree_add( | |
551 | struct radix_node *rn, | |
552 | void *context) | |
553 | { | |
554 | errno_t result = 0; | |
555 | struct rtentry *rt = (struct rtentry *)rn; | |
556 | nstat_control_state *state = (nstat_control_state*)context; | |
557 | ||
558 | lck_mtx_assert(rnh_lock, LCK_MTX_ASSERT_OWNED); | |
559 | ||
560 | /* RTF_UP can't change while rnh_lock is held */ | |
561 | if ((rt->rt_flags & RTF_UP) != 0) | |
562 | { | |
563 | /* Clear RTPRF_OURS if the route is still usable */ | |
564 | RT_LOCK(rt); | |
565 | if (rt_validate(rt)) { | |
566 | RT_ADDREF_LOCKED(rt); | |
567 | RT_UNLOCK(rt); | |
568 | } else { | |
569 | RT_UNLOCK(rt); | |
570 | rt = NULL; | |
571 | } | |
572 | ||
573 | /* Otherwise if RTF_CONDEMNED, treat it as if it were down */ | |
574 | if (rt == NULL) | |
575 | return (0); | |
576 | ||
577 | result = nstat_control_source_add(0, state, &nstat_route_provider, rt); | |
578 | if (result != 0) | |
579 | rtfree_locked(rt); | |
580 | } | |
39037602 | 581 | |
6d2010ae A |
582 | return result; |
583 | } | |
584 | ||
585 | static errno_t | |
586 | nstat_route_add_watcher( | |
587 | nstat_control_state *state) | |
588 | { | |
589 | int i; | |
590 | errno_t result = 0; | |
591 | OSIncrementAtomic(&nstat_route_watchers); | |
39037602 | 592 | |
6d2010ae A |
593 | lck_mtx_lock(rnh_lock); |
594 | for (i = 1; i < AF_MAX; i++) | |
595 | { | |
596 | struct radix_node_head *rnh; | |
597 | rnh = rt_tables[i]; | |
598 | if (!rnh) continue; | |
39037602 | 599 | |
6d2010ae A |
600 | result = rnh->rnh_walktree(rnh, nstat_route_walktree_add, state); |
601 | if (result != 0) | |
602 | { | |
6d2010ae A |
603 | break; |
604 | } | |
605 | } | |
606 | lck_mtx_unlock(rnh_lock); | |
39037602 | 607 | |
6d2010ae A |
608 | return result; |
609 | } | |
610 | ||
611 | __private_extern__ void | |
612 | nstat_route_new_entry( | |
613 | struct rtentry *rt) | |
614 | { | |
615 | if (nstat_route_watchers == 0) | |
616 | return; | |
39037602 | 617 | |
6d2010ae A |
618 | lck_mtx_lock(&nstat_mtx); |
619 | if ((rt->rt_flags & RTF_UP) != 0) | |
620 | { | |
621 | nstat_control_state *state; | |
316670eb | 622 | for (state = nstat_controls; state; state = state->ncs_next) |
6d2010ae | 623 | { |
316670eb | 624 | if ((state->ncs_watching & (1 << NSTAT_PROVIDER_ROUTE)) != 0) |
6d2010ae A |
625 | { |
626 | // this client is watching routes | |
627 | // acquire a reference for the route | |
628 | RT_ADDREF(rt); | |
39037602 | 629 | |
6d2010ae A |
630 | // add the source, if that fails, release the reference |
631 | if (nstat_control_source_add(0, state, &nstat_route_provider, rt) != 0) | |
632 | RT_REMREF(rt); | |
633 | } | |
634 | } | |
635 | } | |
636 | lck_mtx_unlock(&nstat_mtx); | |
637 | } | |
638 | ||
639 | static void | |
640 | nstat_route_remove_watcher( | |
641 | __unused nstat_control_state *state) | |
642 | { | |
643 | OSDecrementAtomic(&nstat_route_watchers); | |
644 | } | |
645 | ||
646 | static errno_t | |
647 | nstat_route_copy_descriptor( | |
648 | nstat_provider_cookie_t cookie, | |
649 | void *data, | |
650 | u_int32_t len) | |
651 | { | |
652 | nstat_route_descriptor *desc = (nstat_route_descriptor*)data; | |
653 | if (len < sizeof(*desc)) | |
654 | { | |
6d2010ae A |
655 | return EINVAL; |
656 | } | |
657 | bzero(desc, sizeof(*desc)); | |
39037602 | 658 | |
6d2010ae | 659 | struct rtentry *rt = (struct rtentry*)cookie; |
fe8ab488 A |
660 | desc->id = (uint64_t)VM_KERNEL_ADDRPERM(rt); |
661 | desc->parent_id = (uint64_t)VM_KERNEL_ADDRPERM(rt->rt_parent); | |
662 | desc->gateway_id = (uint64_t)VM_KERNEL_ADDRPERM(rt->rt_gwroute); | |
6d2010ae | 663 | |
39037602 | 664 | |
6d2010ae A |
665 | // key/dest |
666 | struct sockaddr *sa; | |
667 | if ((sa = rt_key(rt))) | |
668 | nstat_copy_sa_out(sa, &desc->dst.sa, sizeof(desc->dst)); | |
39037602 | 669 | |
6d2010ae A |
670 | // mask |
671 | if ((sa = rt_mask(rt)) && sa->sa_len <= sizeof(desc->mask)) | |
672 | memcpy(&desc->mask, sa, sa->sa_len); | |
39037602 | 673 | |
6d2010ae A |
674 | // gateway |
675 | if ((sa = rt->rt_gateway)) | |
676 | nstat_copy_sa_out(sa, &desc->gateway.sa, sizeof(desc->gateway)); | |
39037602 | 677 | |
6d2010ae A |
678 | if (rt->rt_ifp) |
679 | desc->ifindex = rt->rt_ifp->if_index; | |
39037602 | 680 | |
6d2010ae | 681 | desc->flags = rt->rt_flags; |
39037602 | 682 | |
6d2010ae A |
683 | return 0; |
684 | } | |
685 | ||
39037602 A |
686 | static bool |
687 | nstat_route_reporting_allowed(nstat_provider_cookie_t cookie, nstat_provider_filter *filter) | |
688 | { | |
689 | bool retval = true; | |
690 | ||
691 | if ((filter->npf_flags & NSTAT_FILTER_IFNET_FLAGS) != 0) | |
692 | { | |
693 | struct rtentry *rt = (struct rtentry*)cookie; | |
694 | struct ifnet *ifp = rt->rt_ifp; | |
695 | ||
696 | if (ifp) | |
697 | { | |
698 | uint16_t interface_properties = nstat_ifnet_to_flags(ifp); | |
699 | ||
700 | if ((filter->npf_flags & interface_properties) == 0) | |
701 | { | |
702 | retval = false; | |
703 | } | |
704 | } | |
705 | } | |
706 | return retval; | |
707 | } | |
708 | ||
6d2010ae A |
709 | static void |
710 | nstat_init_route_provider(void) | |
711 | { | |
712 | bzero(&nstat_route_provider, sizeof(nstat_route_provider)); | |
713 | nstat_route_provider.nstat_descriptor_length = sizeof(nstat_route_descriptor); | |
714 | nstat_route_provider.nstat_provider_id = NSTAT_PROVIDER_ROUTE; | |
715 | nstat_route_provider.nstat_lookup = nstat_route_lookup; | |
716 | nstat_route_provider.nstat_gone = nstat_route_gone; | |
717 | nstat_route_provider.nstat_counts = nstat_route_counts; | |
718 | nstat_route_provider.nstat_release = nstat_route_release; | |
719 | nstat_route_provider.nstat_watcher_add = nstat_route_add_watcher; | |
720 | nstat_route_provider.nstat_watcher_remove = nstat_route_remove_watcher; | |
721 | nstat_route_provider.nstat_copy_descriptor = nstat_route_copy_descriptor; | |
39037602 | 722 | nstat_route_provider.nstat_reporting_allowed = nstat_route_reporting_allowed; |
6d2010ae A |
723 | nstat_route_provider.next = nstat_providers; |
724 | nstat_providers = &nstat_route_provider; | |
725 | } | |
726 | ||
727 | #pragma mark -- Route Collection -- | |
728 | ||
729 | static struct nstat_counts* | |
730 | nstat_route_attach( | |
731 | struct rtentry *rte) | |
732 | { | |
733 | struct nstat_counts *result = rte->rt_stats; | |
734 | if (result) return result; | |
39037602 | 735 | |
6d2010ae | 736 | if (nstat_malloc_tag == NULL) nstat_init(); |
39037602 | 737 | |
6d2010ae A |
738 | result = nstat_malloc_aligned(sizeof(*result), sizeof(u_int64_t), nstat_malloc_tag); |
739 | if (!result) return result; | |
39037602 | 740 | |
6d2010ae | 741 | bzero(result, sizeof(*result)); |
39037602 | 742 | |
6d2010ae A |
743 | if (!OSCompareAndSwapPtr(NULL, result, &rte->rt_stats)) |
744 | { | |
745 | nstat_free_aligned(result, nstat_malloc_tag); | |
746 | result = rte->rt_stats; | |
747 | } | |
39037602 | 748 | |
6d2010ae A |
749 | return result; |
750 | } | |
751 | ||
752 | __private_extern__ void | |
753 | nstat_route_detach( | |
754 | struct rtentry *rte) | |
755 | { | |
756 | if (rte->rt_stats) | |
757 | { | |
758 | nstat_free_aligned(rte->rt_stats, nstat_malloc_tag); | |
759 | rte->rt_stats = NULL; | |
760 | } | |
761 | } | |
762 | ||
763 | __private_extern__ void | |
764 | nstat_route_connect_attempt( | |
765 | struct rtentry *rte) | |
766 | { | |
767 | while (rte) | |
768 | { | |
769 | struct nstat_counts* stats = nstat_route_attach(rte); | |
770 | if (stats) | |
771 | { | |
772 | OSIncrementAtomic(&stats->nstat_connectattempts); | |
773 | } | |
39037602 | 774 | |
6d2010ae A |
775 | rte = rte->rt_parent; |
776 | } | |
777 | } | |
778 | ||
779 | __private_extern__ void | |
780 | nstat_route_connect_success( | |
781 | struct rtentry *rte) | |
782 | { | |
783 | // This route | |
784 | while (rte) | |
785 | { | |
786 | struct nstat_counts* stats = nstat_route_attach(rte); | |
787 | if (stats) | |
788 | { | |
789 | OSIncrementAtomic(&stats->nstat_connectsuccesses); | |
790 | } | |
39037602 | 791 | |
6d2010ae A |
792 | rte = rte->rt_parent; |
793 | } | |
794 | } | |
795 | ||
796 | __private_extern__ void | |
797 | nstat_route_tx( | |
798 | struct rtentry *rte, | |
799 | u_int32_t packets, | |
800 | u_int32_t bytes, | |
801 | u_int32_t flags) | |
802 | { | |
803 | while (rte) | |
804 | { | |
805 | struct nstat_counts* stats = nstat_route_attach(rte); | |
806 | if (stats) | |
807 | { | |
808 | if ((flags & NSTAT_TX_FLAG_RETRANSMIT) != 0) | |
809 | { | |
810 | OSAddAtomic(bytes, &stats->nstat_txretransmit); | |
811 | } | |
812 | else | |
813 | { | |
814 | OSAddAtomic64((SInt64)packets, (SInt64*)&stats->nstat_txpackets); | |
815 | OSAddAtomic64((SInt64)bytes, (SInt64*)&stats->nstat_txbytes); | |
816 | } | |
817 | } | |
39037602 | 818 | |
6d2010ae A |
819 | rte = rte->rt_parent; |
820 | } | |
821 | } | |
822 | ||
823 | __private_extern__ void | |
824 | nstat_route_rx( | |
825 | struct rtentry *rte, | |
826 | u_int32_t packets, | |
827 | u_int32_t bytes, | |
828 | u_int32_t flags) | |
829 | { | |
830 | while (rte) | |
831 | { | |
832 | struct nstat_counts* stats = nstat_route_attach(rte); | |
833 | if (stats) | |
834 | { | |
835 | if (flags == 0) | |
836 | { | |
837 | OSAddAtomic64((SInt64)packets, (SInt64*)&stats->nstat_rxpackets); | |
838 | OSAddAtomic64((SInt64)bytes, (SInt64*)&stats->nstat_rxbytes); | |
839 | } | |
840 | else | |
841 | { | |
842 | if (flags & NSTAT_RX_FLAG_OUT_OF_ORDER) | |
843 | OSAddAtomic(bytes, &stats->nstat_rxoutoforderbytes); | |
844 | if (flags & NSTAT_RX_FLAG_DUPLICATE) | |
845 | OSAddAtomic(bytes, &stats->nstat_rxduplicatebytes); | |
846 | } | |
847 | } | |
39037602 | 848 | |
6d2010ae A |
849 | rte = rte->rt_parent; |
850 | } | |
851 | } | |
852 | ||
853 | __private_extern__ void | |
854 | nstat_route_rtt( | |
855 | struct rtentry *rte, | |
856 | u_int32_t rtt, | |
857 | u_int32_t rtt_var) | |
858 | { | |
859 | const int32_t factor = 8; | |
39037602 | 860 | |
6d2010ae A |
861 | while (rte) |
862 | { | |
863 | struct nstat_counts* stats = nstat_route_attach(rte); | |
864 | if (stats) | |
865 | { | |
866 | int32_t oldrtt; | |
867 | int32_t newrtt; | |
39037602 | 868 | |
6d2010ae A |
869 | // average |
870 | do | |
871 | { | |
872 | oldrtt = stats->nstat_avg_rtt; | |
873 | if (oldrtt == 0) | |
874 | { | |
875 | newrtt = rtt; | |
876 | } | |
877 | else | |
878 | { | |
879 | newrtt = oldrtt - (oldrtt - (int32_t)rtt) / factor; | |
880 | } | |
881 | if (oldrtt == newrtt) break; | |
882 | } while (!OSCompareAndSwap(oldrtt, newrtt, &stats->nstat_avg_rtt)); | |
39037602 | 883 | |
6d2010ae A |
884 | // minimum |
885 | do | |
886 | { | |
887 | oldrtt = stats->nstat_min_rtt; | |
888 | if (oldrtt != 0 && oldrtt < (int32_t)rtt) | |
889 | { | |
890 | break; | |
891 | } | |
892 | } while (!OSCompareAndSwap(oldrtt, rtt, &stats->nstat_min_rtt)); | |
39037602 | 893 | |
6d2010ae A |
894 | // variance |
895 | do | |
896 | { | |
897 | oldrtt = stats->nstat_var_rtt; | |
898 | if (oldrtt == 0) | |
899 | { | |
900 | newrtt = rtt_var; | |
901 | } | |
902 | else | |
903 | { | |
904 | newrtt = oldrtt - (oldrtt - (int32_t)rtt_var) / factor; | |
905 | } | |
906 | if (oldrtt == newrtt) break; | |
907 | } while (!OSCompareAndSwap(oldrtt, newrtt, &stats->nstat_var_rtt)); | |
908 | } | |
39037602 | 909 | |
6d2010ae A |
910 | rte = rte->rt_parent; |
911 | } | |
912 | } | |
913 | ||
316670eb | 914 | |
39037602 | 915 | #pragma mark -- TCP Kernel Provider -- |
6d2010ae | 916 | |
39236c6e A |
917 | /* |
918 | * Due to the way the kernel deallocates a process (the process structure | |
919 | * might be gone by the time we get the PCB detach notification), | |
920 | * we need to cache the process name. Without this, proc_name() would | |
921 | * return null and the process name would never be sent to userland. | |
fe8ab488 A |
922 | * |
923 | * For UDP sockets, we also store the cached the connection tuples along with | |
924 | * the interface index. This is necessary because when UDP sockets are | |
925 | * disconnected, the connection tuples are forever lost from the inpcb, thus | |
926 | * we need to keep track of the last call to connect() in ntstat. | |
39236c6e | 927 | */ |
fe8ab488 | 928 | struct nstat_tucookie { |
39236c6e A |
929 | struct inpcb *inp; |
930 | char pname[MAXCOMLEN+1]; | |
fe8ab488 A |
931 | bool cached; |
932 | union | |
933 | { | |
934 | struct sockaddr_in v4; | |
935 | struct sockaddr_in6 v6; | |
936 | } local; | |
937 | union | |
938 | { | |
939 | struct sockaddr_in v4; | |
940 | struct sockaddr_in6 v6; | |
941 | } remote; | |
942 | unsigned int if_index; | |
3e170ce0 | 943 | uint16_t ifnet_properties; |
39236c6e A |
944 | }; |
945 | ||
fe8ab488 A |
946 | static struct nstat_tucookie * |
947 | nstat_tucookie_alloc_internal( | |
39236c6e | 948 | struct inpcb *inp, |
fe8ab488 A |
949 | bool ref, |
950 | bool locked) | |
39236c6e | 951 | { |
fe8ab488 | 952 | struct nstat_tucookie *cookie; |
39236c6e A |
953 | |
954 | cookie = OSMalloc(sizeof(*cookie), nstat_malloc_tag); | |
955 | if (cookie == NULL) | |
956 | return NULL; | |
fe8ab488 A |
957 | if (!locked) |
958 | lck_mtx_assert(&nstat_mtx, LCK_MTX_ASSERT_NOTOWNED); | |
959 | if (ref && in_pcb_checkstate(inp, WNT_ACQUIRE, locked) == WNT_STOPUSING) | |
39236c6e A |
960 | { |
961 | OSFree(cookie, sizeof(*cookie), nstat_malloc_tag); | |
962 | return NULL; | |
963 | } | |
964 | bzero(cookie, sizeof(*cookie)); | |
965 | cookie->inp = inp; | |
966 | proc_name(inp->inp_socket->last_pid, cookie->pname, | |
967 | sizeof(cookie->pname)); | |
fe8ab488 A |
968 | /* |
969 | * We only increment the reference count for UDP sockets because we | |
970 | * only cache UDP socket tuples. | |
971 | */ | |
972 | if (SOCK_PROTO(inp->inp_socket) == IPPROTO_UDP) | |
973 | OSIncrementAtomic(&inp->inp_nstat_refcnt); | |
39236c6e A |
974 | |
975 | return cookie; | |
976 | } | |
977 | ||
fe8ab488 A |
978 | static struct nstat_tucookie * |
979 | nstat_tucookie_alloc( | |
980 | struct inpcb *inp) | |
981 | { | |
982 | return nstat_tucookie_alloc_internal(inp, false, false); | |
983 | } | |
984 | ||
985 | static struct nstat_tucookie * | |
986 | nstat_tucookie_alloc_ref( | |
987 | struct inpcb *inp) | |
988 | { | |
989 | return nstat_tucookie_alloc_internal(inp, true, false); | |
990 | } | |
991 | ||
992 | static struct nstat_tucookie * | |
993 | nstat_tucookie_alloc_ref_locked( | |
994 | struct inpcb *inp) | |
995 | { | |
996 | return nstat_tucookie_alloc_internal(inp, true, true); | |
997 | } | |
998 | ||
39236c6e | 999 | static void |
fe8ab488 A |
1000 | nstat_tucookie_release_internal( |
1001 | struct nstat_tucookie *cookie, | |
39236c6e A |
1002 | int inplock) |
1003 | { | |
fe8ab488 A |
1004 | if (SOCK_PROTO(cookie->inp->inp_socket) == IPPROTO_UDP) |
1005 | OSDecrementAtomic(&cookie->inp->inp_nstat_refcnt); | |
39236c6e A |
1006 | in_pcb_checkstate(cookie->inp, WNT_RELEASE, inplock); |
1007 | OSFree(cookie, sizeof(*cookie), nstat_malloc_tag); | |
1008 | } | |
1009 | ||
fe8ab488 A |
1010 | static void |
1011 | nstat_tucookie_release( | |
1012 | struct nstat_tucookie *cookie) | |
1013 | { | |
1014 | nstat_tucookie_release_internal(cookie, false); | |
1015 | } | |
1016 | ||
1017 | static void | |
1018 | nstat_tucookie_release_locked( | |
1019 | struct nstat_tucookie *cookie) | |
1020 | { | |
1021 | nstat_tucookie_release_internal(cookie, true); | |
1022 | } | |
1023 | ||
1024 | ||
6d2010ae A |
1025 | static nstat_provider nstat_tcp_provider; |
1026 | ||
1027 | static errno_t | |
1028 | nstat_tcpudp_lookup( | |
39236c6e A |
1029 | struct inpcbinfo *inpinfo, |
1030 | const void *data, | |
1031 | u_int32_t length, | |
6d2010ae A |
1032 | nstat_provider_cookie_t *out_cookie) |
1033 | { | |
39236c6e A |
1034 | struct inpcb *inp = NULL; |
1035 | ||
6d2010ae A |
1036 | // parameter validation |
1037 | const nstat_tcp_add_param *param = (const nstat_tcp_add_param*)data; | |
1038 | if (length < sizeof(*param)) | |
1039 | { | |
6d2010ae A |
1040 | return EINVAL; |
1041 | } | |
39037602 | 1042 | |
6d2010ae A |
1043 | // src and dst must match |
1044 | if (param->remote.v4.sin_family != 0 && | |
1045 | param->remote.v4.sin_family != param->local.v4.sin_family) | |
1046 | { | |
6d2010ae A |
1047 | return EINVAL; |
1048 | } | |
39037602 A |
1049 | |
1050 | ||
6d2010ae A |
1051 | switch (param->local.v4.sin_family) |
1052 | { | |
1053 | case AF_INET: | |
1054 | { | |
1055 | if (param->local.v4.sin_len != sizeof(param->local.v4) || | |
1056 | (param->remote.v4.sin_family != 0 && | |
1057 | param->remote.v4.sin_len != sizeof(param->remote.v4))) | |
1058 | { | |
6d2010ae A |
1059 | return EINVAL; |
1060 | } | |
39037602 | 1061 | |
6d2010ae A |
1062 | inp = in_pcblookup_hash(inpinfo, param->remote.v4.sin_addr, param->remote.v4.sin_port, |
1063 | param->local.v4.sin_addr, param->local.v4.sin_port, 1, NULL); | |
1064 | } | |
1065 | break; | |
39037602 | 1066 | |
6d2010ae A |
1067 | #if INET6 |
1068 | case AF_INET6: | |
1069 | { | |
1070 | union | |
1071 | { | |
1072 | const struct in6_addr *in6c; | |
1073 | struct in6_addr *in6; | |
1074 | } local, remote; | |
39037602 | 1075 | |
6d2010ae A |
1076 | if (param->local.v6.sin6_len != sizeof(param->local.v6) || |
1077 | (param->remote.v6.sin6_family != 0 && | |
1078 | param->remote.v6.sin6_len != sizeof(param->remote.v6))) | |
1079 | { | |
6d2010ae A |
1080 | return EINVAL; |
1081 | } | |
39037602 | 1082 | |
6d2010ae A |
1083 | local.in6c = ¶m->local.v6.sin6_addr; |
1084 | remote.in6c = ¶m->remote.v6.sin6_addr; | |
39037602 | 1085 | |
6d2010ae A |
1086 | inp = in6_pcblookup_hash(inpinfo, remote.in6, param->remote.v6.sin6_port, |
1087 | local.in6, param->local.v6.sin6_port, 1, NULL); | |
1088 | } | |
1089 | break; | |
1090 | #endif | |
39037602 | 1091 | |
6d2010ae | 1092 | default: |
6d2010ae A |
1093 | return EINVAL; |
1094 | } | |
39037602 | 1095 | |
39236c6e A |
1096 | if (inp == NULL) |
1097 | return ENOENT; | |
39037602 | 1098 | |
6d2010ae | 1099 | // At this point we have a ref to the inpcb |
fe8ab488 | 1100 | *out_cookie = nstat_tucookie_alloc(inp); |
39236c6e A |
1101 | if (*out_cookie == NULL) |
1102 | in_pcb_checkstate(inp, WNT_RELEASE, 0); | |
1103 | ||
6d2010ae A |
1104 | return 0; |
1105 | } | |
1106 | ||
1107 | static errno_t | |
1108 | nstat_tcp_lookup( | |
1109 | const void *data, | |
1110 | u_int32_t length, | |
1111 | nstat_provider_cookie_t *out_cookie) | |
1112 | { | |
1113 | return nstat_tcpudp_lookup(&tcbinfo, data, length, out_cookie); | |
1114 | } | |
1115 | ||
1116 | static int | |
1117 | nstat_tcp_gone( | |
1118 | nstat_provider_cookie_t cookie) | |
1119 | { | |
fe8ab488 A |
1120 | struct nstat_tucookie *tucookie = |
1121 | (struct nstat_tucookie *)cookie; | |
39236c6e A |
1122 | struct inpcb *inp; |
1123 | struct tcpcb *tp; | |
39037602 | 1124 | |
39236c6e | 1125 | return (!(inp = tucookie->inp) || |
fe8ab488 A |
1126 | !(tp = intotcpcb(inp)) || |
1127 | inp->inp_state == INPCB_STATE_DEAD) ? 1 : 0; | |
6d2010ae A |
1128 | } |
1129 | ||
1130 | static errno_t | |
1131 | nstat_tcp_counts( | |
1132 | nstat_provider_cookie_t cookie, | |
1133 | struct nstat_counts *out_counts, | |
1134 | int *out_gone) | |
1135 | { | |
fe8ab488 A |
1136 | struct nstat_tucookie *tucookie = |
1137 | (struct nstat_tucookie *)cookie; | |
39236c6e A |
1138 | struct inpcb *inp; |
1139 | ||
6d2010ae | 1140 | bzero(out_counts, sizeof(*out_counts)); |
39037602 | 1141 | |
3e170ce0 | 1142 | if (out_gone) *out_gone = 0; |
39037602 | 1143 | |
6d2010ae | 1144 | // if the pcb is in the dead state, we should stop using it |
39236c6e | 1145 | if (nstat_tcp_gone(cookie)) |
6d2010ae | 1146 | { |
3e170ce0 | 1147 | if (out_gone) *out_gone = 1; |
39236c6e A |
1148 | if (!(inp = tucookie->inp) || !intotcpcb(inp)) |
1149 | return EINVAL; | |
39037602 | 1150 | } |
39236c6e A |
1151 | inp = tucookie->inp; |
1152 | struct tcpcb *tp = intotcpcb(inp); | |
39037602 | 1153 | |
316670eb A |
1154 | atomic_get_64(out_counts->nstat_rxpackets, &inp->inp_stat->rxpackets); |
1155 | atomic_get_64(out_counts->nstat_rxbytes, &inp->inp_stat->rxbytes); | |
1156 | atomic_get_64(out_counts->nstat_txpackets, &inp->inp_stat->txpackets); | |
1157 | atomic_get_64(out_counts->nstat_txbytes, &inp->inp_stat->txbytes); | |
1158 | out_counts->nstat_rxduplicatebytes = tp->t_stat.rxduplicatebytes; | |
1159 | out_counts->nstat_rxoutoforderbytes = tp->t_stat.rxoutoforderbytes; | |
1160 | out_counts->nstat_txretransmit = tp->t_stat.txretransmitbytes; | |
1161 | out_counts->nstat_connectattempts = tp->t_state >= TCPS_SYN_SENT ? 1 : 0; | |
1162 | out_counts->nstat_connectsuccesses = tp->t_state >= TCPS_ESTABLISHED ? 1 : 0; | |
1163 | out_counts->nstat_avg_rtt = tp->t_srtt; | |
1164 | out_counts->nstat_min_rtt = tp->t_rttbest; | |
1165 | out_counts->nstat_var_rtt = tp->t_rttvar; | |
1166 | if (out_counts->nstat_avg_rtt < out_counts->nstat_min_rtt) | |
1167 | out_counts->nstat_min_rtt = out_counts->nstat_avg_rtt; | |
39236c6e A |
1168 | atomic_get_64(out_counts->nstat_cell_rxbytes, &inp->inp_cstat->rxbytes); |
1169 | atomic_get_64(out_counts->nstat_cell_txbytes, &inp->inp_cstat->txbytes); | |
1170 | atomic_get_64(out_counts->nstat_wifi_rxbytes, &inp->inp_wstat->rxbytes); | |
1171 | atomic_get_64(out_counts->nstat_wifi_txbytes, &inp->inp_wstat->txbytes); | |
fe8ab488 A |
1172 | atomic_get_64(out_counts->nstat_wired_rxbytes, &inp->inp_Wstat->rxbytes); |
1173 | atomic_get_64(out_counts->nstat_wired_txbytes, &inp->inp_Wstat->txbytes); | |
39037602 | 1174 | |
6d2010ae A |
1175 | return 0; |
1176 | } | |
1177 | ||
1178 | static void | |
1179 | nstat_tcp_release( | |
316670eb A |
1180 | nstat_provider_cookie_t cookie, |
1181 | int locked) | |
6d2010ae | 1182 | { |
fe8ab488 A |
1183 | struct nstat_tucookie *tucookie = |
1184 | (struct nstat_tucookie *)cookie; | |
39236c6e | 1185 | |
fe8ab488 | 1186 | nstat_tucookie_release_internal(tucookie, locked); |
6d2010ae A |
1187 | } |
1188 | ||
6d2010ae A |
1189 | static errno_t |
1190 | nstat_tcp_add_watcher( | |
1191 | nstat_control_state *state) | |
1192 | { | |
1193 | OSIncrementAtomic(&nstat_tcp_watchers); | |
39037602 | 1194 | |
39236c6e | 1195 | lck_rw_lock_shared(tcbinfo.ipi_lock); |
39037602 | 1196 | |
6d2010ae A |
1197 | // Add all current tcp inpcbs. Ignore those in timewait |
1198 | struct inpcb *inp; | |
fe8ab488 A |
1199 | struct nstat_tucookie *cookie; |
1200 | LIST_FOREACH(inp, tcbinfo.ipi_listhead, inp_list) | |
6d2010ae | 1201 | { |
fe8ab488 | 1202 | cookie = nstat_tucookie_alloc_ref(inp); |
39236c6e | 1203 | if (cookie == NULL) |
6d2010ae | 1204 | continue; |
39236c6e A |
1205 | if (nstat_control_source_add(0, state, &nstat_tcp_provider, |
1206 | cookie) != 0) | |
6d2010ae | 1207 | { |
fe8ab488 | 1208 | nstat_tucookie_release(cookie); |
6d2010ae A |
1209 | break; |
1210 | } | |
1211 | } | |
39037602 | 1212 | |
39236c6e | 1213 | lck_rw_done(tcbinfo.ipi_lock); |
39037602 | 1214 | |
6d2010ae A |
1215 | return 0; |
1216 | } | |
1217 | ||
1218 | static void | |
1219 | nstat_tcp_remove_watcher( | |
1220 | __unused nstat_control_state *state) | |
1221 | { | |
1222 | OSDecrementAtomic(&nstat_tcp_watchers); | |
1223 | } | |
1224 | ||
1225 | __private_extern__ void | |
1226 | nstat_tcp_new_pcb( | |
1227 | struct inpcb *inp) | |
1228 | { | |
fe8ab488 | 1229 | struct nstat_tucookie *cookie; |
39236c6e | 1230 | |
6d2010ae A |
1231 | if (nstat_tcp_watchers == 0) |
1232 | return; | |
fe8ab488 A |
1233 | |
1234 | socket_lock(inp->inp_socket, 0); | |
6d2010ae A |
1235 | lck_mtx_lock(&nstat_mtx); |
1236 | nstat_control_state *state; | |
316670eb | 1237 | for (state = nstat_controls; state; state = state->ncs_next) |
6d2010ae | 1238 | { |
39037602 | 1239 | if ((state->ncs_watching & (1 << NSTAT_PROVIDER_TCP_KERNEL)) != 0) |
6d2010ae A |
1240 | { |
1241 | // this client is watching tcp | |
1242 | // acquire a reference for it | |
fe8ab488 | 1243 | cookie = nstat_tucookie_alloc_ref_locked(inp); |
39236c6e A |
1244 | if (cookie == NULL) |
1245 | continue; | |
6d2010ae | 1246 | // add the source, if that fails, release the reference |
39236c6e A |
1247 | if (nstat_control_source_add(0, state, |
1248 | &nstat_tcp_provider, cookie) != 0) | |
6d2010ae | 1249 | { |
fe8ab488 | 1250 | nstat_tucookie_release_locked(cookie); |
6d2010ae A |
1251 | break; |
1252 | } | |
1253 | } | |
1254 | } | |
1255 | lck_mtx_unlock(&nstat_mtx); | |
fe8ab488 | 1256 | socket_unlock(inp->inp_socket, 0); |
6d2010ae A |
1257 | } |
1258 | ||
316670eb A |
1259 | __private_extern__ void |
1260 | nstat_pcb_detach(struct inpcb *inp) | |
1261 | { | |
1262 | nstat_control_state *state; | |
1263 | nstat_src *src, *prevsrc; | |
1264 | nstat_src *dead_list = NULL; | |
fe8ab488 A |
1265 | struct nstat_tucookie *tucookie; |
1266 | errno_t result; | |
316670eb A |
1267 | |
1268 | if (inp == NULL || (nstat_tcp_watchers == 0 && nstat_udp_watchers == 0)) | |
1269 | return; | |
1270 | ||
1271 | lck_mtx_lock(&nstat_mtx); | |
3e170ce0 A |
1272 | for (state = nstat_controls; state; state = state->ncs_next) |
1273 | { | |
316670eb A |
1274 | lck_mtx_lock(&state->mtx); |
1275 | for (prevsrc = NULL, src = state->ncs_srcs; src; | |
39037602 | 1276 | prevsrc = src, src = src->next) |
39236c6e | 1277 | { |
d190cdc3 A |
1278 | nstat_provider_id_t provider_id = src->provider->nstat_provider_id; |
1279 | if (provider_id == NSTAT_PROVIDER_TCP_KERNEL || provider_id == NSTAT_PROVIDER_UDP_KERNEL) | |
1280 | { | |
1281 | tucookie = (struct nstat_tucookie *)src->cookie; | |
1282 | if (tucookie->inp == inp) | |
1283 | break; | |
1284 | } | |
39236c6e | 1285 | } |
316670eb | 1286 | |
3e170ce0 A |
1287 | if (src) |
1288 | { | |
1289 | result = nstat_control_send_goodbye(state, src); | |
39037602 | 1290 | |
316670eb A |
1291 | if (prevsrc) |
1292 | prevsrc->next = src->next; | |
1293 | else | |
1294 | state->ncs_srcs = src->next; | |
39037602 | 1295 | |
316670eb A |
1296 | src->next = dead_list; |
1297 | dead_list = src; | |
1298 | } | |
1299 | lck_mtx_unlock(&state->mtx); | |
1300 | } | |
1301 | lck_mtx_unlock(&nstat_mtx); | |
1302 | ||
1303 | while (dead_list) { | |
1304 | src = dead_list; | |
1305 | dead_list = src->next; | |
1306 | ||
1307 | nstat_control_cleanup_source(NULL, src, TRUE); | |
1308 | } | |
1309 | } | |
1310 | ||
fe8ab488 A |
1311 | __private_extern__ void |
1312 | nstat_pcb_cache(struct inpcb *inp) | |
1313 | { | |
1314 | nstat_control_state *state; | |
1315 | nstat_src *src; | |
1316 | struct nstat_tucookie *tucookie; | |
1317 | ||
39037602 | 1318 | if (inp == NULL || nstat_udp_watchers == 0 || |
fe8ab488 A |
1319 | inp->inp_nstat_refcnt == 0) |
1320 | return; | |
1321 | VERIFY(SOCK_PROTO(inp->inp_socket) == IPPROTO_UDP); | |
1322 | lck_mtx_lock(&nstat_mtx); | |
1323 | for (state = nstat_controls; state; state = state->ncs_next) { | |
1324 | lck_mtx_lock(&state->mtx); | |
39037602 | 1325 | for (src = state->ncs_srcs; src; src = src->next) |
fe8ab488 A |
1326 | { |
1327 | tucookie = (struct nstat_tucookie *)src->cookie; | |
1328 | if (tucookie->inp == inp) | |
1329 | { | |
1330 | if (inp->inp_vflag & INP_IPV6) | |
1331 | { | |
1332 | nstat_ip6_to_sockaddr(&inp->in6p_laddr, | |
39037602 | 1333 | inp->inp_lport, |
fe8ab488 A |
1334 | &tucookie->local.v6, |
1335 | sizeof(tucookie->local)); | |
1336 | nstat_ip6_to_sockaddr(&inp->in6p_faddr, | |
1337 | inp->inp_fport, | |
1338 | &tucookie->remote.v6, | |
1339 | sizeof(tucookie->remote)); | |
1340 | } | |
1341 | else if (inp->inp_vflag & INP_IPV4) | |
1342 | { | |
1343 | nstat_ip_to_sockaddr(&inp->inp_laddr, | |
39037602 | 1344 | inp->inp_lport, |
fe8ab488 A |
1345 | &tucookie->local.v4, |
1346 | sizeof(tucookie->local)); | |
1347 | nstat_ip_to_sockaddr(&inp->inp_faddr, | |
39037602 | 1348 | inp->inp_fport, |
fe8ab488 A |
1349 | &tucookie->remote.v4, |
1350 | sizeof(tucookie->remote)); | |
1351 | } | |
1352 | if (inp->inp_last_outifp) | |
39037602 | 1353 | tucookie->if_index = |
fe8ab488 | 1354 | inp->inp_last_outifp->if_index; |
3e170ce0 A |
1355 | |
1356 | tucookie->ifnet_properties = nstat_inpcb_to_flags(inp); | |
fe8ab488 A |
1357 | tucookie->cached = true; |
1358 | break; | |
1359 | } | |
1360 | } | |
1361 | lck_mtx_unlock(&state->mtx); | |
1362 | } | |
1363 | lck_mtx_unlock(&nstat_mtx); | |
1364 | } | |
1365 | ||
1366 | __private_extern__ void | |
1367 | nstat_pcb_invalidate_cache(struct inpcb *inp) | |
1368 | { | |
1369 | nstat_control_state *state; | |
1370 | nstat_src *src; | |
1371 | struct nstat_tucookie *tucookie; | |
1372 | ||
1373 | if (inp == NULL || nstat_udp_watchers == 0 || | |
1374 | inp->inp_nstat_refcnt == 0) | |
1375 | return; | |
1376 | VERIFY(SOCK_PROTO(inp->inp_socket) == IPPROTO_UDP); | |
1377 | lck_mtx_lock(&nstat_mtx); | |
1378 | for (state = nstat_controls; state; state = state->ncs_next) { | |
1379 | lck_mtx_lock(&state->mtx); | |
39037602 | 1380 | for (src = state->ncs_srcs; src; src = src->next) |
fe8ab488 A |
1381 | { |
1382 | tucookie = (struct nstat_tucookie *)src->cookie; | |
1383 | if (tucookie->inp == inp) | |
1384 | { | |
1385 | tucookie->cached = false; | |
1386 | break; | |
1387 | } | |
1388 | } | |
1389 | lck_mtx_unlock(&state->mtx); | |
1390 | } | |
1391 | lck_mtx_unlock(&nstat_mtx); | |
1392 | } | |
1393 | ||
6d2010ae A |
1394 | static errno_t |
1395 | nstat_tcp_copy_descriptor( | |
1396 | nstat_provider_cookie_t cookie, | |
39236c6e A |
1397 | void *data, |
1398 | u_int32_t len) | |
6d2010ae A |
1399 | { |
1400 | if (len < sizeof(nstat_tcp_descriptor)) | |
1401 | { | |
6d2010ae A |
1402 | return EINVAL; |
1403 | } | |
316670eb | 1404 | |
39236c6e | 1405 | if (nstat_tcp_gone(cookie)) |
316670eb | 1406 | return EINVAL; |
39037602 | 1407 | |
39236c6e | 1408 | nstat_tcp_descriptor *desc = (nstat_tcp_descriptor*)data; |
fe8ab488 A |
1409 | struct nstat_tucookie *tucookie = |
1410 | (struct nstat_tucookie *)cookie; | |
39236c6e A |
1411 | struct inpcb *inp = tucookie->inp; |
1412 | struct tcpcb *tp = intotcpcb(inp); | |
6d2010ae | 1413 | bzero(desc, sizeof(*desc)); |
39037602 | 1414 | |
6d2010ae A |
1415 | if (inp->inp_vflag & INP_IPV6) |
1416 | { | |
1417 | nstat_ip6_to_sockaddr(&inp->in6p_laddr, inp->inp_lport, | |
1418 | &desc->local.v6, sizeof(desc->local)); | |
1419 | nstat_ip6_to_sockaddr(&inp->in6p_faddr, inp->inp_fport, | |
1420 | &desc->remote.v6, sizeof(desc->remote)); | |
1421 | } | |
1422 | else if (inp->inp_vflag & INP_IPV4) | |
1423 | { | |
1424 | nstat_ip_to_sockaddr(&inp->inp_laddr, inp->inp_lport, | |
1425 | &desc->local.v4, sizeof(desc->local)); | |
1426 | nstat_ip_to_sockaddr(&inp->inp_faddr, inp->inp_fport, | |
1427 | &desc->remote.v4, sizeof(desc->remote)); | |
1428 | } | |
39037602 | 1429 | |
6d2010ae | 1430 | desc->state = intotcpcb(inp)->t_state; |
316670eb A |
1431 | desc->ifindex = (inp->inp_last_outifp == NULL) ? 0 : |
1432 | inp->inp_last_outifp->if_index; | |
39037602 | 1433 | |
6d2010ae A |
1434 | // danger - not locked, values could be bogus |
1435 | desc->txunacked = tp->snd_max - tp->snd_una; | |
1436 | desc->txwindow = tp->snd_wnd; | |
1437 | desc->txcwindow = tp->snd_cwnd; | |
fe8ab488 A |
1438 | |
1439 | if (CC_ALGO(tp)->name != NULL) { | |
1440 | strlcpy(desc->cc_algo, CC_ALGO(tp)->name, | |
1441 | sizeof(desc->cc_algo)); | |
1442 | } | |
39037602 | 1443 | |
6d2010ae A |
1444 | struct socket *so = inp->inp_socket; |
1445 | if (so) | |
1446 | { | |
1447 | // TBD - take the socket lock around these to make sure | |
1448 | // they're in sync? | |
1449 | desc->upid = so->last_upid; | |
1450 | desc->pid = so->last_pid; | |
316670eb | 1451 | desc->traffic_class = so->so_traffic_class; |
39037602 A |
1452 | if ((so->so_flags1 & SOF1_TRAFFIC_MGT_SO_BACKGROUND)) |
1453 | desc->traffic_mgt_flags |= TRAFFIC_MGT_SO_BACKGROUND; | |
1454 | if ((so->so_flags1 & SOF1_TRAFFIC_MGT_TCP_RECVBG)) | |
1455 | desc->traffic_mgt_flags |= TRAFFIC_MGT_TCP_RECVBG; | |
6d2010ae | 1456 | proc_name(desc->pid, desc->pname, sizeof(desc->pname)); |
3e170ce0 | 1457 | if (desc->pname[0] == 0) |
39236c6e A |
1458 | { |
1459 | strlcpy(desc->pname, tucookie->pname, | |
1460 | sizeof(desc->pname)); | |
1461 | } | |
1462 | else | |
1463 | { | |
1464 | desc->pname[sizeof(desc->pname) - 1] = 0; | |
1465 | strlcpy(tucookie->pname, desc->pname, | |
1466 | sizeof(tucookie->pname)); | |
1467 | } | |
1468 | memcpy(desc->uuid, so->last_uuid, sizeof(so->last_uuid)); | |
fe8ab488 | 1469 | memcpy(desc->vuuid, so->so_vuuid, sizeof(so->so_vuuid)); |
39236c6e A |
1470 | if (so->so_flags & SOF_DELEGATED) { |
1471 | desc->eupid = so->e_upid; | |
1472 | desc->epid = so->e_pid; | |
1473 | memcpy(desc->euuid, so->e_uuid, sizeof(so->e_uuid)); | |
1474 | } else { | |
1475 | desc->eupid = desc->upid; | |
1476 | desc->epid = desc->pid; | |
1477 | memcpy(desc->euuid, desc->uuid, sizeof(desc->uuid)); | |
1478 | } | |
6d2010ae A |
1479 | desc->sndbufsize = so->so_snd.sb_hiwat; |
1480 | desc->sndbufused = so->so_snd.sb_cc; | |
1481 | desc->rcvbufsize = so->so_rcv.sb_hiwat; | |
1482 | desc->rcvbufused = so->so_rcv.sb_cc; | |
1483 | } | |
3e170ce0 A |
1484 | |
1485 | tcp_get_connectivity_status(tp, &desc->connstatus); | |
1486 | desc->ifnet_properties = nstat_inpcb_to_flags(inp); | |
6d2010ae A |
1487 | return 0; |
1488 | } | |
1489 | ||
3e170ce0 | 1490 | static bool |
39037602 | 1491 | nstat_tcpudp_reporting_allowed(nstat_provider_cookie_t cookie, nstat_provider_filter *filter, bool is_UDP) |
3e170ce0 A |
1492 | { |
1493 | bool retval = true; | |
1494 | ||
39037602 | 1495 | if ((filter->npf_flags & (NSTAT_FILTER_IFNET_FLAGS|NSTAT_FILTER_SPECIFIC_USER)) != 0) |
3e170ce0 A |
1496 | { |
1497 | struct nstat_tucookie *tucookie = (struct nstat_tucookie *)cookie; | |
39037602 A |
1498 | struct inpcb *inp = tucookie->inp; |
1499 | ||
1500 | /* Only apply interface filter if at least one is allowed. */ | |
1501 | if ((filter->npf_flags & NSTAT_FILTER_IFNET_FLAGS) != 0) | |
1502 | { | |
1503 | uint16_t interface_properties = nstat_inpcb_to_flags(inp); | |
1504 | ||
1505 | if ((filter->npf_flags & interface_properties) == 0) | |
1506 | { | |
1507 | // For UDP, we could have an undefined interface and yet transfers may have occurred. | |
1508 | // We allow reporting if there have been transfers of the requested kind. | |
1509 | // This is imperfect as we cannot account for the expensive attribute over wifi. | |
1510 | // We also assume that cellular is expensive and we have no way to select for AWDL | |
1511 | if (is_UDP) | |
1512 | { | |
1513 | do | |
1514 | { | |
1515 | if ((filter->npf_flags & (NSTAT_FILTER_ACCEPT_CELLULAR|NSTAT_FILTER_ACCEPT_EXPENSIVE)) && | |
1516 | (inp->inp_cstat->rxbytes || inp->inp_cstat->txbytes)) | |
1517 | { | |
1518 | break; | |
1519 | } | |
1520 | if ((filter->npf_flags & NSTAT_FILTER_ACCEPT_WIFI) && | |
1521 | (inp->inp_wstat->rxbytes || inp->inp_wstat->txbytes)) | |
1522 | { | |
1523 | break; | |
1524 | } | |
1525 | if ((filter->npf_flags & NSTAT_FILTER_ACCEPT_WIRED) && | |
1526 | (inp->inp_Wstat->rxbytes || inp->inp_Wstat->txbytes)) | |
1527 | { | |
1528 | break; | |
1529 | } | |
1530 | return false; | |
1531 | } while (0); | |
1532 | } | |
1533 | else | |
1534 | { | |
1535 | return false; | |
1536 | } | |
1537 | } | |
1538 | } | |
3e170ce0 | 1539 | |
39037602 A |
1540 | if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER) != 0) && (retval)) |
1541 | { | |
1542 | struct socket *so = inp->inp_socket; | |
1543 | retval = false; | |
3e170ce0 | 1544 | |
39037602 A |
1545 | if (so) |
1546 | { | |
1547 | if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_PID) != 0) && | |
1548 | (filter->npf_pid == so->last_pid)) | |
1549 | { | |
1550 | retval = true; | |
1551 | } | |
1552 | else if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_EPID) != 0) && | |
1553 | (filter->npf_pid == (so->so_flags & SOF_DELEGATED)? so->e_upid : so->last_pid)) | |
1554 | { | |
1555 | retval = true; | |
1556 | } | |
1557 | else if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_UUID) != 0) && | |
1558 | (memcmp(filter->npf_uuid, so->last_uuid, sizeof(so->last_uuid)) == 0)) | |
1559 | { | |
1560 | retval = true; | |
1561 | } | |
1562 | else if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_EUUID) != 0) && | |
1563 | (memcmp(filter->npf_uuid, (so->so_flags & SOF_DELEGATED)? so->e_uuid : so->last_uuid, | |
1564 | sizeof(so->last_uuid)) == 0)) | |
1565 | { | |
1566 | retval = true; | |
1567 | } | |
1568 | } | |
1569 | } | |
3e170ce0 A |
1570 | } |
1571 | return retval; | |
1572 | } | |
1573 | ||
39037602 A |
1574 | static bool |
1575 | nstat_tcp_reporting_allowed(nstat_provider_cookie_t cookie, nstat_provider_filter *filter) | |
1576 | { | |
1577 | return nstat_tcpudp_reporting_allowed(cookie, filter, FALSE); | |
1578 | } | |
1579 | ||
6d2010ae A |
1580 | static void |
1581 | nstat_init_tcp_provider(void) | |
1582 | { | |
1583 | bzero(&nstat_tcp_provider, sizeof(nstat_tcp_provider)); | |
1584 | nstat_tcp_provider.nstat_descriptor_length = sizeof(nstat_tcp_descriptor); | |
39037602 | 1585 | nstat_tcp_provider.nstat_provider_id = NSTAT_PROVIDER_TCP_KERNEL; |
6d2010ae A |
1586 | nstat_tcp_provider.nstat_lookup = nstat_tcp_lookup; |
1587 | nstat_tcp_provider.nstat_gone = nstat_tcp_gone; | |
1588 | nstat_tcp_provider.nstat_counts = nstat_tcp_counts; | |
1589 | nstat_tcp_provider.nstat_release = nstat_tcp_release; | |
1590 | nstat_tcp_provider.nstat_watcher_add = nstat_tcp_add_watcher; | |
1591 | nstat_tcp_provider.nstat_watcher_remove = nstat_tcp_remove_watcher; | |
1592 | nstat_tcp_provider.nstat_copy_descriptor = nstat_tcp_copy_descriptor; | |
39037602 | 1593 | nstat_tcp_provider.nstat_reporting_allowed = nstat_tcp_reporting_allowed; |
6d2010ae A |
1594 | nstat_tcp_provider.next = nstat_providers; |
1595 | nstat_providers = &nstat_tcp_provider; | |
1596 | } | |
1597 | ||
1598 | #pragma mark -- UDP Provider -- | |
1599 | ||
1600 | static nstat_provider nstat_udp_provider; | |
1601 | ||
1602 | static errno_t | |
1603 | nstat_udp_lookup( | |
1604 | const void *data, | |
1605 | u_int32_t length, | |
1606 | nstat_provider_cookie_t *out_cookie) | |
1607 | { | |
1608 | return nstat_tcpudp_lookup(&udbinfo, data, length, out_cookie); | |
1609 | } | |
1610 | ||
1611 | static int | |
1612 | nstat_udp_gone( | |
1613 | nstat_provider_cookie_t cookie) | |
1614 | { | |
fe8ab488 A |
1615 | struct nstat_tucookie *tucookie = |
1616 | (struct nstat_tucookie *)cookie; | |
39236c6e A |
1617 | struct inpcb *inp; |
1618 | ||
1619 | return (!(inp = tucookie->inp) || | |
1620 | inp->inp_state == INPCB_STATE_DEAD) ? 1 : 0; | |
6d2010ae A |
1621 | } |
1622 | ||
1623 | static errno_t | |
1624 | nstat_udp_counts( | |
1625 | nstat_provider_cookie_t cookie, | |
39236c6e A |
1626 | struct nstat_counts *out_counts, |
1627 | int *out_gone) | |
6d2010ae | 1628 | { |
fe8ab488 A |
1629 | struct nstat_tucookie *tucookie = |
1630 | (struct nstat_tucookie *)cookie; | |
39037602 | 1631 | |
3e170ce0 | 1632 | if (out_gone) *out_gone = 0; |
39037602 | 1633 | |
6d2010ae | 1634 | // if the pcb is in the dead state, we should stop using it |
39236c6e | 1635 | if (nstat_udp_gone(cookie)) |
6d2010ae | 1636 | { |
3e170ce0 | 1637 | if (out_gone) *out_gone = 1; |
39236c6e A |
1638 | if (!tucookie->inp) |
1639 | return EINVAL; | |
6d2010ae | 1640 | } |
39236c6e | 1641 | struct inpcb *inp = tucookie->inp; |
39037602 | 1642 | |
6d2010ae A |
1643 | atomic_get_64(out_counts->nstat_rxpackets, &inp->inp_stat->rxpackets); |
1644 | atomic_get_64(out_counts->nstat_rxbytes, &inp->inp_stat->rxbytes); | |
1645 | atomic_get_64(out_counts->nstat_txpackets, &inp->inp_stat->txpackets); | |
1646 | atomic_get_64(out_counts->nstat_txbytes, &inp->inp_stat->txbytes); | |
39236c6e A |
1647 | atomic_get_64(out_counts->nstat_cell_rxbytes, &inp->inp_cstat->rxbytes); |
1648 | atomic_get_64(out_counts->nstat_cell_txbytes, &inp->inp_cstat->txbytes); | |
1649 | atomic_get_64(out_counts->nstat_wifi_rxbytes, &inp->inp_wstat->rxbytes); | |
1650 | atomic_get_64(out_counts->nstat_wifi_txbytes, &inp->inp_wstat->txbytes); | |
fe8ab488 A |
1651 | atomic_get_64(out_counts->nstat_wired_rxbytes, &inp->inp_Wstat->rxbytes); |
1652 | atomic_get_64(out_counts->nstat_wired_txbytes, &inp->inp_Wstat->txbytes); | |
39037602 | 1653 | |
6d2010ae A |
1654 | return 0; |
1655 | } | |
1656 | ||
1657 | static void | |
1658 | nstat_udp_release( | |
316670eb A |
1659 | nstat_provider_cookie_t cookie, |
1660 | int locked) | |
6d2010ae | 1661 | { |
fe8ab488 A |
1662 | struct nstat_tucookie *tucookie = |
1663 | (struct nstat_tucookie *)cookie; | |
39236c6e | 1664 | |
fe8ab488 | 1665 | nstat_tucookie_release_internal(tucookie, locked); |
6d2010ae A |
1666 | } |
1667 | ||
6d2010ae A |
1668 | static errno_t |
1669 | nstat_udp_add_watcher( | |
1670 | nstat_control_state *state) | |
1671 | { | |
39236c6e | 1672 | struct inpcb *inp; |
fe8ab488 | 1673 | struct nstat_tucookie *cookie; |
39236c6e | 1674 | |
6d2010ae | 1675 | OSIncrementAtomic(&nstat_udp_watchers); |
39037602 | 1676 | |
39236c6e A |
1677 | lck_rw_lock_shared(udbinfo.ipi_lock); |
1678 | // Add all current UDP inpcbs. | |
fe8ab488 | 1679 | LIST_FOREACH(inp, udbinfo.ipi_listhead, inp_list) |
6d2010ae | 1680 | { |
fe8ab488 | 1681 | cookie = nstat_tucookie_alloc_ref(inp); |
39236c6e | 1682 | if (cookie == NULL) |
6d2010ae | 1683 | continue; |
39236c6e A |
1684 | if (nstat_control_source_add(0, state, &nstat_udp_provider, |
1685 | cookie) != 0) | |
6d2010ae | 1686 | { |
fe8ab488 | 1687 | nstat_tucookie_release(cookie); |
6d2010ae A |
1688 | break; |
1689 | } | |
1690 | } | |
39037602 | 1691 | |
39236c6e | 1692 | lck_rw_done(udbinfo.ipi_lock); |
39037602 | 1693 | |
6d2010ae A |
1694 | return 0; |
1695 | } | |
1696 | ||
1697 | static void | |
1698 | nstat_udp_remove_watcher( | |
1699 | __unused nstat_control_state *state) | |
1700 | { | |
1701 | OSDecrementAtomic(&nstat_udp_watchers); | |
1702 | } | |
1703 | ||
1704 | __private_extern__ void | |
1705 | nstat_udp_new_pcb( | |
1706 | struct inpcb *inp) | |
1707 | { | |
fe8ab488 | 1708 | struct nstat_tucookie *cookie; |
39236c6e | 1709 | |
6d2010ae A |
1710 | if (nstat_udp_watchers == 0) |
1711 | return; | |
39037602 | 1712 | |
fe8ab488 | 1713 | socket_lock(inp->inp_socket, 0); |
6d2010ae A |
1714 | lck_mtx_lock(&nstat_mtx); |
1715 | nstat_control_state *state; | |
316670eb | 1716 | for (state = nstat_controls; state; state = state->ncs_next) |
6d2010ae | 1717 | { |
39037602 | 1718 | if ((state->ncs_watching & (1 << NSTAT_PROVIDER_UDP_KERNEL)) != 0) |
6d2010ae A |
1719 | { |
1720 | // this client is watching tcp | |
1721 | // acquire a reference for it | |
fe8ab488 | 1722 | cookie = nstat_tucookie_alloc_ref_locked(inp); |
39236c6e A |
1723 | if (cookie == NULL) |
1724 | continue; | |
6d2010ae | 1725 | // add the source, if that fails, release the reference |
39037602 | 1726 | if (nstat_control_source_add(0, state, |
39236c6e | 1727 | &nstat_udp_provider, cookie) != 0) |
6d2010ae | 1728 | { |
fe8ab488 | 1729 | nstat_tucookie_release_locked(cookie); |
6d2010ae A |
1730 | break; |
1731 | } | |
1732 | } | |
1733 | } | |
1734 | lck_mtx_unlock(&nstat_mtx); | |
fe8ab488 | 1735 | socket_unlock(inp->inp_socket, 0); |
6d2010ae A |
1736 | } |
1737 | ||
1738 | static errno_t | |
1739 | nstat_udp_copy_descriptor( | |
1740 | nstat_provider_cookie_t cookie, | |
1741 | void *data, | |
1742 | u_int32_t len) | |
1743 | { | |
1744 | if (len < sizeof(nstat_udp_descriptor)) | |
1745 | { | |
6d2010ae A |
1746 | return EINVAL; |
1747 | } | |
39037602 | 1748 | |
39236c6e | 1749 | if (nstat_udp_gone(cookie)) |
316670eb A |
1750 | return EINVAL; |
1751 | ||
fe8ab488 A |
1752 | struct nstat_tucookie *tucookie = |
1753 | (struct nstat_tucookie *)cookie; | |
39236c6e A |
1754 | nstat_udp_descriptor *desc = (nstat_udp_descriptor*)data; |
1755 | struct inpcb *inp = tucookie->inp; | |
1756 | ||
6d2010ae | 1757 | bzero(desc, sizeof(*desc)); |
39037602 | 1758 | |
fe8ab488 A |
1759 | if (tucookie->cached == false) { |
1760 | if (inp->inp_vflag & INP_IPV6) | |
1761 | { | |
1762 | nstat_ip6_to_sockaddr(&inp->in6p_laddr, inp->inp_lport, | |
3e170ce0 | 1763 | &desc->local.v6, sizeof(desc->local.v6)); |
fe8ab488 | 1764 | nstat_ip6_to_sockaddr(&inp->in6p_faddr, inp->inp_fport, |
3e170ce0 | 1765 | &desc->remote.v6, sizeof(desc->remote.v6)); |
fe8ab488 A |
1766 | } |
1767 | else if (inp->inp_vflag & INP_IPV4) | |
1768 | { | |
1769 | nstat_ip_to_sockaddr(&inp->inp_laddr, inp->inp_lport, | |
3e170ce0 | 1770 | &desc->local.v4, sizeof(desc->local.v4)); |
fe8ab488 | 1771 | nstat_ip_to_sockaddr(&inp->inp_faddr, inp->inp_fport, |
3e170ce0 | 1772 | &desc->remote.v4, sizeof(desc->remote.v4)); |
fe8ab488 | 1773 | } |
3e170ce0 | 1774 | desc->ifnet_properties = nstat_inpcb_to_flags(inp); |
6d2010ae | 1775 | } |
fe8ab488 | 1776 | else |
6d2010ae | 1777 | { |
39037602 A |
1778 | if (inp->inp_vflag & INP_IPV6) |
1779 | { | |
1780 | memcpy(&desc->local.v6, &tucookie->local.v6, | |
1781 | sizeof(desc->local.v6)); | |
1782 | memcpy(&desc->remote.v6, &tucookie->remote.v6, | |
1783 | sizeof(desc->remote.v6)); | |
1784 | } | |
1785 | else if (inp->inp_vflag & INP_IPV4) | |
1786 | { | |
1787 | memcpy(&desc->local.v4, &tucookie->local.v4, | |
1788 | sizeof(desc->local.v4)); | |
1789 | memcpy(&desc->remote.v4, &tucookie->remote.v4, | |
1790 | sizeof(desc->remote.v4)); | |
1791 | } | |
1792 | desc->ifnet_properties = tucookie->ifnet_properties; | |
1793 | } | |
1794 | ||
1795 | if (inp->inp_last_outifp) | |
1796 | desc->ifindex = inp->inp_last_outifp->if_index; | |
1797 | else | |
1798 | desc->ifindex = tucookie->if_index; | |
1799 | ||
1800 | struct socket *so = inp->inp_socket; | |
1801 | if (so) | |
1802 | { | |
1803 | // TBD - take the socket lock around these to make sure | |
1804 | // they're in sync? | |
1805 | desc->upid = so->last_upid; | |
1806 | desc->pid = so->last_pid; | |
1807 | proc_name(desc->pid, desc->pname, sizeof(desc->pname)); | |
1808 | if (desc->pname[0] == 0) | |
1809 | { | |
1810 | strlcpy(desc->pname, tucookie->pname, | |
1811 | sizeof(desc->pname)); | |
1812 | } | |
1813 | else | |
1814 | { | |
1815 | desc->pname[sizeof(desc->pname) - 1] = 0; | |
1816 | strlcpy(tucookie->pname, desc->pname, | |
1817 | sizeof(tucookie->pname)); | |
1818 | } | |
1819 | memcpy(desc->uuid, so->last_uuid, sizeof(so->last_uuid)); | |
1820 | memcpy(desc->vuuid, so->so_vuuid, sizeof(so->so_vuuid)); | |
1821 | if (so->so_flags & SOF_DELEGATED) { | |
1822 | desc->eupid = so->e_upid; | |
1823 | desc->epid = so->e_pid; | |
1824 | memcpy(desc->euuid, so->e_uuid, sizeof(so->e_uuid)); | |
1825 | } else { | |
1826 | desc->eupid = desc->upid; | |
1827 | desc->epid = desc->pid; | |
1828 | memcpy(desc->euuid, desc->uuid, sizeof(desc->uuid)); | |
1829 | } | |
1830 | desc->rcvbufsize = so->so_rcv.sb_hiwat; | |
1831 | desc->rcvbufused = so->so_rcv.sb_cc; | |
1832 | desc->traffic_class = so->so_traffic_class; | |
1833 | } | |
1834 | ||
1835 | return 0; | |
1836 | } | |
1837 | ||
1838 | static bool | |
1839 | nstat_udp_reporting_allowed(nstat_provider_cookie_t cookie, nstat_provider_filter *filter) | |
1840 | { | |
1841 | return nstat_tcpudp_reporting_allowed(cookie, filter, TRUE); | |
1842 | } | |
1843 | ||
1844 | ||
1845 | static void | |
1846 | nstat_init_udp_provider(void) | |
1847 | { | |
1848 | bzero(&nstat_udp_provider, sizeof(nstat_udp_provider)); | |
1849 | nstat_udp_provider.nstat_provider_id = NSTAT_PROVIDER_UDP_KERNEL; | |
1850 | nstat_udp_provider.nstat_descriptor_length = sizeof(nstat_udp_descriptor); | |
1851 | nstat_udp_provider.nstat_lookup = nstat_udp_lookup; | |
1852 | nstat_udp_provider.nstat_gone = nstat_udp_gone; | |
1853 | nstat_udp_provider.nstat_counts = nstat_udp_counts; | |
1854 | nstat_udp_provider.nstat_watcher_add = nstat_udp_add_watcher; | |
1855 | nstat_udp_provider.nstat_watcher_remove = nstat_udp_remove_watcher; | |
1856 | nstat_udp_provider.nstat_copy_descriptor = nstat_udp_copy_descriptor; | |
1857 | nstat_udp_provider.nstat_release = nstat_udp_release; | |
1858 | nstat_udp_provider.nstat_reporting_allowed = nstat_udp_reporting_allowed; | |
1859 | nstat_udp_provider.next = nstat_providers; | |
1860 | nstat_providers = &nstat_udp_provider; | |
1861 | } | |
1862 | ||
1863 | #pragma mark -- TCP/UDP Userland | |
1864 | ||
1865 | // Almost all of this infrastucture is common to both TCP and UDP | |
1866 | ||
1867 | static nstat_provider nstat_userland_tcp_provider; | |
1868 | static nstat_provider nstat_userland_udp_provider; | |
1869 | ||
1870 | ||
1871 | struct nstat_tu_shadow { | |
1872 | tailq_entry_tu_shadow shad_link; | |
1873 | userland_stats_request_vals_fn *shad_getvals_fn; | |
1874 | userland_stats_provider_context *shad_provider_context; | |
1875 | u_int64_t shad_properties; | |
1876 | int shad_provider; | |
1877 | uint32_t shad_magic; | |
1878 | }; | |
1879 | ||
1880 | // Magic number checking should remain in place until the userland provider has been fully proven | |
1881 | #define TU_SHADOW_MAGIC 0xfeedf00d | |
1882 | #define TU_SHADOW_UNMAGIC 0xdeaddeed | |
1883 | ||
1884 | static tailq_head_tu_shadow nstat_userprot_shad_head = TAILQ_HEAD_INITIALIZER(nstat_userprot_shad_head); | |
1885 | ||
1886 | static errno_t | |
1887 | nstat_userland_tu_lookup( | |
1888 | __unused const void *data, | |
1889 | __unused u_int32_t length, | |
1890 | __unused nstat_provider_cookie_t *out_cookie) | |
1891 | { | |
1892 | // Looking up a specific connection is not supported | |
1893 | return ENOTSUP; | |
1894 | } | |
1895 | ||
1896 | static int | |
1897 | nstat_userland_tu_gone( | |
1898 | __unused nstat_provider_cookie_t cookie) | |
1899 | { | |
1900 | // Returns non-zero if the source has gone. | |
1901 | // We don't keep a source hanging around, so the answer is always 0 | |
1902 | return 0; | |
1903 | } | |
1904 | ||
1905 | static errno_t | |
1906 | nstat_userland_tu_counts( | |
1907 | nstat_provider_cookie_t cookie, | |
1908 | struct nstat_counts *out_counts, | |
1909 | int *out_gone) | |
1910 | { | |
1911 | struct nstat_tu_shadow *shad = (struct nstat_tu_shadow *)cookie; | |
1912 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
1913 | ||
1914 | bool result = (*shad->shad_getvals_fn)(shad->shad_provider_context, out_counts, NULL); | |
1915 | ||
1916 | if (out_gone) *out_gone = 0; | |
1917 | ||
1918 | return (result)? 0 : EIO; | |
1919 | } | |
1920 | ||
1921 | ||
1922 | static errno_t | |
1923 | nstat_userland_tu_copy_descriptor( | |
1924 | nstat_provider_cookie_t cookie, | |
1925 | void *data, | |
1926 | __unused u_int32_t len) | |
1927 | { | |
1928 | struct nstat_tu_shadow *shad = (struct nstat_tu_shadow *)cookie; | |
1929 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
1930 | ||
1931 | bool result = (*shad->shad_getvals_fn)(shad->shad_provider_context, NULL, data); | |
1932 | ||
1933 | return (result)? 0 : EIO; | |
1934 | } | |
1935 | ||
1936 | static void | |
1937 | nstat_userland_tu_release( | |
1938 | __unused nstat_provider_cookie_t cookie, | |
1939 | __unused int locked) | |
1940 | { | |
1941 | // Called when a nstat_src is detached. | |
1942 | // We don't reference count or ask for delayed release so nothing to do here. | |
1943 | } | |
1944 | ||
1945 | static bool | |
1946 | check_reporting_for_user(nstat_provider_filter *filter, pid_t pid, pid_t epid, uuid_t *uuid, uuid_t *euuid) | |
1947 | { | |
1948 | bool retval = true; | |
1949 | ||
1950 | if ((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER) != 0) | |
1951 | { | |
1952 | retval = false; | |
1953 | ||
1954 | if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_PID) != 0) && | |
1955 | (filter->npf_pid == pid)) | |
1956 | { | |
1957 | retval = true; | |
1958 | } | |
1959 | else if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_EPID) != 0) && | |
1960 | (filter->npf_pid == epid)) | |
1961 | { | |
1962 | retval = true; | |
1963 | } | |
1964 | else if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_UUID) != 0) && | |
1965 | (memcmp(filter->npf_uuid, uuid, sizeof(*uuid)) == 0)) | |
1966 | { | |
1967 | retval = true; | |
1968 | } | |
1969 | else if (((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER_BY_EUUID) != 0) && | |
1970 | (memcmp(filter->npf_uuid, euuid, sizeof(*euuid)) == 0)) | |
1971 | { | |
1972 | retval = true; | |
1973 | } | |
1974 | } | |
1975 | return retval; | |
1976 | } | |
1977 | ||
1978 | static bool | |
1979 | nstat_userland_tcp_reporting_allowed(nstat_provider_cookie_t cookie, nstat_provider_filter *filter) | |
1980 | { | |
1981 | bool retval = true; | |
1982 | ||
1983 | if ((filter->npf_flags & (NSTAT_FILTER_IFNET_FLAGS|NSTAT_FILTER_SPECIFIC_USER)) != 0) | |
1984 | { | |
1985 | nstat_tcp_descriptor tcp_desc; // Stack allocation - OK or pushing the limits too far? | |
1986 | struct nstat_tu_shadow *shad = (struct nstat_tu_shadow *)cookie; | |
1987 | ||
1988 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
1989 | ||
1990 | if ((*shad->shad_getvals_fn)(shad->shad_provider_context, NULL, &tcp_desc)) | |
1991 | { | |
1992 | if ((filter->npf_flags & NSTAT_FILTER_IFNET_FLAGS) != 0) | |
1993 | { | |
1994 | if ((filter->npf_flags & tcp_desc.ifnet_properties) == 0) | |
1995 | { | |
1996 | return false; | |
1997 | } | |
1998 | } | |
1999 | if ((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER) != 0) | |
2000 | { | |
2001 | retval = check_reporting_for_user(filter, (pid_t)tcp_desc.pid, (pid_t)tcp_desc.epid, | |
2002 | &tcp_desc.uuid, &tcp_desc.euuid); | |
2003 | } | |
2004 | } | |
2005 | else | |
2006 | { | |
2007 | retval = false; // No further information, so might as well give up now. | |
2008 | } | |
2009 | } | |
2010 | return retval; | |
2011 | } | |
2012 | ||
2013 | static bool | |
2014 | nstat_userland_udp_reporting_allowed(nstat_provider_cookie_t cookie, nstat_provider_filter *filter) | |
2015 | { | |
2016 | bool retval = true; | |
2017 | ||
2018 | if ((filter->npf_flags & (NSTAT_FILTER_IFNET_FLAGS|NSTAT_FILTER_SPECIFIC_USER)) != 0) | |
2019 | { | |
2020 | nstat_udp_descriptor udp_desc; // Stack allocation - OK or pushing the limits too far? | |
2021 | struct nstat_tu_shadow *shad = (struct nstat_tu_shadow *)cookie; | |
2022 | ||
2023 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
2024 | ||
2025 | if ((*shad->shad_getvals_fn)(shad->shad_provider_context, NULL, &udp_desc)) | |
2026 | { | |
2027 | if ((filter->npf_flags & NSTAT_FILTER_IFNET_FLAGS) != 0) | |
2028 | { | |
2029 | if ((filter->npf_flags & udp_desc.ifnet_properties) == 0) | |
2030 | { | |
2031 | return false; | |
2032 | } | |
2033 | } | |
2034 | if ((filter->npf_flags & NSTAT_FILTER_SPECIFIC_USER) != 0) | |
2035 | { | |
2036 | retval = check_reporting_for_user(filter, (pid_t)udp_desc.pid, (pid_t)udp_desc.epid, | |
2037 | &udp_desc.uuid, &udp_desc.euuid); | |
2038 | } | |
2039 | } | |
2040 | else | |
2041 | { | |
2042 | retval = false; // No further information, so might as well give up now. | |
2043 | } | |
2044 | } | |
2045 | return retval; | |
2046 | } | |
2047 | ||
2048 | ||
2049 | ||
2050 | static errno_t | |
2051 | nstat_userland_tcp_add_watcher( | |
2052 | nstat_control_state *state) | |
2053 | { | |
2054 | struct nstat_tu_shadow *shad; | |
2055 | ||
2056 | OSIncrementAtomic(&nstat_userland_tcp_watchers); | |
2057 | ||
2058 | lck_mtx_lock(&nstat_mtx); | |
2059 | ||
2060 | TAILQ_FOREACH(shad, &nstat_userprot_shad_head, shad_link) { | |
2061 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
2062 | ||
2063 | if (shad->shad_provider == NSTAT_PROVIDER_TCP_USERLAND) | |
2064 | { | |
2065 | int result = nstat_control_source_add(0, state, &nstat_userland_tcp_provider, shad); | |
2066 | if (result != 0) | |
2067 | { | |
2068 | printf("%s - nstat_control_source_add returned %d\n", __func__, result); | |
2069 | } | |
2070 | } | |
2071 | } | |
2072 | lck_mtx_unlock(&nstat_mtx); | |
2073 | ||
2074 | return 0; | |
2075 | } | |
2076 | ||
2077 | static errno_t | |
2078 | nstat_userland_udp_add_watcher( | |
2079 | nstat_control_state *state) | |
2080 | { | |
2081 | struct nstat_tu_shadow *shad; | |
2082 | ||
2083 | OSIncrementAtomic(&nstat_userland_udp_watchers); | |
2084 | ||
2085 | lck_mtx_lock(&nstat_mtx); | |
2086 | ||
2087 | TAILQ_FOREACH(shad, &nstat_userprot_shad_head, shad_link) { | |
2088 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
2089 | ||
2090 | if (shad->shad_provider == NSTAT_PROVIDER_UDP_USERLAND) | |
2091 | { | |
2092 | int result = nstat_control_source_add(0, state, &nstat_userland_udp_provider, shad); | |
2093 | if (result != 0) | |
2094 | { | |
2095 | printf("%s - nstat_control_source_add returned %d\n", __func__, result); | |
2096 | } | |
2097 | } | |
2098 | } | |
2099 | lck_mtx_unlock(&nstat_mtx); | |
2100 | ||
2101 | return 0; | |
2102 | } | |
2103 | ||
2104 | ||
2105 | static void | |
2106 | nstat_userland_tcp_remove_watcher( | |
2107 | __unused nstat_control_state *state) | |
2108 | { | |
2109 | OSDecrementAtomic(&nstat_userland_tcp_watchers); | |
2110 | } | |
2111 | ||
2112 | static void | |
2113 | nstat_userland_udp_remove_watcher( | |
2114 | __unused nstat_control_state *state) | |
2115 | { | |
2116 | OSDecrementAtomic(&nstat_userland_udp_watchers); | |
2117 | } | |
2118 | ||
2119 | static void | |
2120 | nstat_init_userland_tcp_provider(void) | |
2121 | { | |
2122 | bzero(&nstat_userland_tcp_provider, sizeof(nstat_tcp_provider)); | |
2123 | nstat_userland_tcp_provider.nstat_descriptor_length = sizeof(nstat_tcp_descriptor); | |
2124 | nstat_userland_tcp_provider.nstat_provider_id = NSTAT_PROVIDER_TCP_USERLAND; | |
2125 | nstat_userland_tcp_provider.nstat_lookup = nstat_userland_tu_lookup; | |
2126 | nstat_userland_tcp_provider.nstat_gone = nstat_userland_tu_gone; | |
2127 | nstat_userland_tcp_provider.nstat_counts = nstat_userland_tu_counts; | |
2128 | nstat_userland_tcp_provider.nstat_release = nstat_userland_tu_release; | |
2129 | nstat_userland_tcp_provider.nstat_watcher_add = nstat_userland_tcp_add_watcher; | |
2130 | nstat_userland_tcp_provider.nstat_watcher_remove = nstat_userland_tcp_remove_watcher; | |
2131 | nstat_userland_tcp_provider.nstat_copy_descriptor = nstat_userland_tu_copy_descriptor; | |
2132 | nstat_userland_tcp_provider.nstat_reporting_allowed = nstat_userland_tcp_reporting_allowed; | |
2133 | nstat_userland_tcp_provider.next = nstat_providers; | |
2134 | nstat_providers = &nstat_userland_tcp_provider; | |
2135 | } | |
2136 | ||
2137 | ||
2138 | static void | |
2139 | nstat_init_userland_udp_provider(void) | |
2140 | { | |
2141 | bzero(&nstat_userland_udp_provider, sizeof(nstat_udp_provider)); | |
2142 | nstat_userland_udp_provider.nstat_descriptor_length = sizeof(nstat_udp_descriptor); | |
2143 | nstat_userland_udp_provider.nstat_provider_id = NSTAT_PROVIDER_UDP_USERLAND; | |
2144 | nstat_userland_udp_provider.nstat_lookup = nstat_userland_tu_lookup; | |
2145 | nstat_userland_udp_provider.nstat_gone = nstat_userland_tu_gone; | |
2146 | nstat_userland_udp_provider.nstat_counts = nstat_userland_tu_counts; | |
2147 | nstat_userland_udp_provider.nstat_release = nstat_userland_tu_release; | |
2148 | nstat_userland_udp_provider.nstat_watcher_add = nstat_userland_udp_add_watcher; | |
2149 | nstat_userland_udp_provider.nstat_watcher_remove = nstat_userland_udp_remove_watcher; | |
2150 | nstat_userland_udp_provider.nstat_copy_descriptor = nstat_userland_tu_copy_descriptor; | |
2151 | nstat_userland_udp_provider.nstat_reporting_allowed = nstat_userland_udp_reporting_allowed; | |
2152 | nstat_userland_udp_provider.next = nstat_providers; | |
2153 | nstat_providers = &nstat_userland_udp_provider; | |
2154 | } | |
2155 | ||
2156 | ||
2157 | ||
2158 | // Things get started with a call to netstats to say that there’s a new connection: | |
2159 | __private_extern__ nstat_userland_context | |
2160 | ntstat_userland_stats_open(userland_stats_provider_context *ctx, | |
2161 | int provider_id, | |
2162 | u_int64_t properties, | |
2163 | userland_stats_request_vals_fn req_fn) | |
2164 | { | |
2165 | struct nstat_tu_shadow *shad; | |
2166 | ||
2167 | if ((provider_id != NSTAT_PROVIDER_TCP_USERLAND) && (provider_id != NSTAT_PROVIDER_UDP_USERLAND)) | |
2168 | { | |
2169 | printf("%s - incorrect provider is supplied, %d\n", __func__, provider_id); | |
2170 | return NULL; | |
2171 | } | |
2172 | ||
2173 | shad = OSMalloc(sizeof(*shad), nstat_malloc_tag); | |
2174 | if (shad == NULL) | |
2175 | return NULL; | |
2176 | ||
2177 | shad->shad_getvals_fn = req_fn; | |
2178 | shad->shad_provider_context = ctx; | |
2179 | shad->shad_provider = provider_id; | |
2180 | shad->shad_properties = properties; | |
2181 | shad->shad_magic = TU_SHADOW_MAGIC; | |
2182 | ||
2183 | lck_mtx_lock(&nstat_mtx); | |
2184 | nstat_control_state *state; | |
2185 | ||
2186 | // Even if there are no watchers, we save the shadow structure | |
2187 | TAILQ_INSERT_HEAD(&nstat_userprot_shad_head, shad, shad_link); | |
2188 | ||
2189 | for (state = nstat_controls; state; state = state->ncs_next) | |
2190 | { | |
2191 | if ((state->ncs_watching & (1 << provider_id)) != 0) | |
fe8ab488 | 2192 | { |
39037602 A |
2193 | // this client is watching tcp/udp userland |
2194 | // Link to it. | |
2195 | int result = nstat_control_source_add(0, state, &nstat_userland_tcp_provider, shad); | |
2196 | if (result != 0) | |
2197 | { | |
2198 | printf("%s - nstat_control_source_add returned %d\n", __func__, result); | |
2199 | } | |
fe8ab488 | 2200 | } |
6d2010ae | 2201 | } |
39037602 A |
2202 | lck_mtx_unlock(&nstat_mtx); |
2203 | ||
2204 | return (nstat_userland_context)shad; | |
2205 | } | |
2206 | ||
2207 | ||
2208 | __private_extern__ void | |
2209 | ntstat_userland_stats_close(nstat_userland_context nstat_ctx) | |
2210 | { | |
2211 | struct nstat_tu_shadow *shad = (struct nstat_tu_shadow *)nstat_ctx; | |
2212 | nstat_src *dead_list = NULL; | |
2213 | ||
2214 | if (shad == NULL) | |
2215 | return; | |
2216 | ||
2217 | assert(shad->shad_magic == TU_SHADOW_MAGIC); | |
2218 | ||
2219 | lck_mtx_lock(&nstat_mtx); | |
2220 | if (nstat_userland_udp_watchers != 0 || nstat_userland_tcp_watchers != 0) | |
6d2010ae | 2221 | { |
39037602 A |
2222 | nstat_control_state *state; |
2223 | nstat_src *src, *prevsrc; | |
2224 | errno_t result; | |
2225 | ||
2226 | for (state = nstat_controls; state; state = state->ncs_next) | |
39236c6e | 2227 | { |
39037602 A |
2228 | lck_mtx_lock(&state->mtx); |
2229 | for (prevsrc = NULL, src = state->ncs_srcs; src; | |
2230 | prevsrc = src, src = src->next) | |
2231 | { | |
2232 | if (shad == (struct nstat_tu_shadow *)src->cookie) | |
2233 | break; | |
2234 | } | |
2235 | ||
2236 | if (src) | |
2237 | { | |
2238 | result = nstat_control_send_goodbye(state, src); | |
2239 | ||
2240 | if (prevsrc) | |
2241 | prevsrc->next = src->next; | |
2242 | else | |
2243 | state->ncs_srcs = src->next; | |
2244 | ||
2245 | src->next = dead_list; | |
2246 | dead_list = src; | |
2247 | } | |
2248 | lck_mtx_unlock(&state->mtx); | |
39236c6e | 2249 | } |
6d2010ae | 2250 | } |
39037602 | 2251 | TAILQ_REMOVE(&nstat_userprot_shad_head, shad, shad_link); |
3e170ce0 | 2252 | |
39037602 A |
2253 | lck_mtx_unlock(&nstat_mtx); |
2254 | ||
2255 | while (dead_list) | |
2256 | { | |
2257 | nstat_src *src; | |
2258 | src = dead_list; | |
2259 | dead_list = src->next; | |
2260 | ||
2261 | nstat_control_cleanup_source(NULL, src, TRUE); | |
2262 | } | |
2263 | ||
2264 | shad->shad_magic = TU_SHADOW_UNMAGIC; | |
2265 | ||
2266 | OSFree(shad, sizeof(*shad), nstat_malloc_tag); | |
6d2010ae A |
2267 | } |
2268 | ||
39037602 A |
2269 | |
2270 | __private_extern__ void | |
2271 | ntstat_userland_stats_event( | |
2272 | __unused nstat_userland_context context, | |
2273 | __unused userland_stats_event_t event) | |
6d2010ae | 2274 | { |
39037602 A |
2275 | // This is a dummy for when we hook up event reporting to NetworkStatistics. |
2276 | // See <rdar://problem/23022832> NetworkStatistics should provide opt-in notifications | |
6d2010ae A |
2277 | } |
2278 | ||
39037602 A |
2279 | |
2280 | ||
2281 | ||
39236c6e A |
2282 | #pragma mark -- ifnet Provider -- |
2283 | ||
2284 | static nstat_provider nstat_ifnet_provider; | |
2285 | ||
2286 | /* | |
2287 | * We store a pointer to the ifnet and the original threshold | |
2288 | * requested by the client. | |
2289 | */ | |
2290 | struct nstat_ifnet_cookie | |
2291 | { | |
2292 | struct ifnet *ifp; | |
2293 | uint64_t threshold; | |
2294 | }; | |
2295 | ||
2296 | static errno_t | |
2297 | nstat_ifnet_lookup( | |
2298 | const void *data, | |
2299 | u_int32_t length, | |
2300 | nstat_provider_cookie_t *out_cookie) | |
2301 | { | |
3e170ce0 | 2302 | const nstat_ifnet_add_param *param = (const nstat_ifnet_add_param *)data; |
39236c6e A |
2303 | struct ifnet *ifp; |
2304 | boolean_t changed = FALSE; | |
2305 | nstat_control_state *state; | |
2306 | nstat_src *src; | |
2307 | struct nstat_ifnet_cookie *cookie; | |
2308 | ||
2309 | if (length < sizeof(*param) || param->threshold < 1024*1024) | |
2310 | return EINVAL; | |
2311 | if (nstat_privcheck != 0) { | |
39037602 | 2312 | errno_t result = priv_check_cred(kauth_cred_get(), |
39236c6e A |
2313 | PRIV_NET_PRIVILEGED_NETWORK_STATISTICS, 0); |
2314 | if (result != 0) | |
2315 | return result; | |
2316 | } | |
2317 | cookie = OSMalloc(sizeof(*cookie), nstat_malloc_tag); | |
2318 | if (cookie == NULL) | |
2319 | return ENOMEM; | |
2320 | bzero(cookie, sizeof(*cookie)); | |
2321 | ||
2322 | ifnet_head_lock_shared(); | |
2323 | TAILQ_FOREACH(ifp, &ifnet_head, if_link) | |
2324 | { | |
2325 | ifnet_lock_exclusive(ifp); | |
2326 | if (ifp->if_index == param->ifindex) | |
2327 | { | |
2328 | cookie->ifp = ifp; | |
2329 | cookie->threshold = param->threshold; | |
2330 | *out_cookie = cookie; | |
2331 | if (!ifp->if_data_threshold || | |
2332 | ifp->if_data_threshold > param->threshold) | |
2333 | { | |
2334 | changed = TRUE; | |
2335 | ifp->if_data_threshold = param->threshold; | |
2336 | } | |
2337 | ifnet_lock_done(ifp); | |
2338 | ifnet_reference(ifp); | |
2339 | break; | |
2340 | } | |
2341 | ifnet_lock_done(ifp); | |
2342 | } | |
2343 | ifnet_head_done(); | |
2344 | ||
2345 | /* | |
2346 | * When we change the threshold to something smaller, we notify | |
2347 | * all of our clients with a description message. | |
2348 | * We won't send a message to the client we are currently serving | |
2349 | * because it has no `ifnet source' yet. | |
2350 | */ | |
2351 | if (changed) | |
2352 | { | |
2353 | lck_mtx_lock(&nstat_mtx); | |
2354 | for (state = nstat_controls; state; state = state->ncs_next) | |
2355 | { | |
2356 | lck_mtx_lock(&state->mtx); | |
2357 | for (src = state->ncs_srcs; src; src = src->next) | |
2358 | { | |
2359 | if (src->provider != &nstat_ifnet_provider) | |
2360 | continue; | |
3e170ce0 | 2361 | nstat_control_send_description(state, src, 0, 0); |
39236c6e A |
2362 | } |
2363 | lck_mtx_unlock(&state->mtx); | |
2364 | } | |
2365 | lck_mtx_unlock(&nstat_mtx); | |
2366 | } | |
2367 | if (cookie->ifp == NULL) | |
2368 | OSFree(cookie, sizeof(*cookie), nstat_malloc_tag); | |
2369 | ||
2370 | return ifp ? 0 : EINVAL; | |
2371 | } | |
2372 | ||
2373 | static int | |
2374 | nstat_ifnet_gone( | |
2375 | nstat_provider_cookie_t cookie) | |
2376 | { | |
2377 | struct ifnet *ifp; | |
2378 | struct nstat_ifnet_cookie *ifcookie = | |
2379 | (struct nstat_ifnet_cookie *)cookie; | |
2380 | ||
2381 | ifnet_head_lock_shared(); | |
2382 | TAILQ_FOREACH(ifp, &ifnet_head, if_link) | |
2383 | { | |
2384 | if (ifp == ifcookie->ifp) | |
2385 | break; | |
2386 | } | |
2387 | ifnet_head_done(); | |
2388 | ||
2389 | return ifp ? 0 : 1; | |
2390 | } | |
2391 | ||
2392 | static errno_t | |
2393 | nstat_ifnet_counts( | |
2394 | nstat_provider_cookie_t cookie, | |
2395 | struct nstat_counts *out_counts, | |
2396 | int *out_gone) | |
2397 | { | |
2398 | struct nstat_ifnet_cookie *ifcookie = | |
2399 | (struct nstat_ifnet_cookie *)cookie; | |
2400 | struct ifnet *ifp = ifcookie->ifp; | |
2401 | ||
3e170ce0 | 2402 | if (out_gone) *out_gone = 0; |
39037602 | 2403 | |
39236c6e A |
2404 | // if the ifnet is gone, we should stop using it |
2405 | if (nstat_ifnet_gone(cookie)) | |
2406 | { | |
3e170ce0 | 2407 | if (out_gone) *out_gone = 1; |
39236c6e A |
2408 | return EINVAL; |
2409 | } | |
2410 | ||
2411 | bzero(out_counts, sizeof(*out_counts)); | |
2412 | out_counts->nstat_rxpackets = ifp->if_ipackets; | |
2413 | out_counts->nstat_rxbytes = ifp->if_ibytes; | |
2414 | out_counts->nstat_txpackets = ifp->if_opackets; | |
2415 | out_counts->nstat_txbytes = ifp->if_obytes; | |
2416 | out_counts->nstat_cell_rxbytes = out_counts->nstat_cell_txbytes = 0; | |
39236c6e A |
2417 | return 0; |
2418 | } | |
2419 | ||
2420 | static void | |
2421 | nstat_ifnet_release( | |
2422 | nstat_provider_cookie_t cookie, | |
2423 | __unused int locked) | |
2424 | { | |
2425 | struct nstat_ifnet_cookie *ifcookie; | |
2426 | struct ifnet *ifp; | |
2427 | nstat_control_state *state; | |
2428 | nstat_src *src; | |
2429 | uint64_t minthreshold = UINT64_MAX; | |
2430 | ||
2431 | /* | |
2432 | * Find all the clients that requested a threshold | |
2433 | * for this ifnet and re-calculate if_data_threshold. | |
2434 | */ | |
2435 | lck_mtx_lock(&nstat_mtx); | |
2436 | for (state = nstat_controls; state; state = state->ncs_next) | |
2437 | { | |
2438 | lck_mtx_lock(&state->mtx); | |
2439 | for (src = state->ncs_srcs; src; src = src->next) | |
2440 | { | |
2441 | /* Skip the provider we are about to detach. */ | |
2442 | if (src->provider != &nstat_ifnet_provider || | |
2443 | src->cookie == cookie) | |
2444 | continue; | |
2445 | ifcookie = (struct nstat_ifnet_cookie *)src->cookie; | |
2446 | if (ifcookie->threshold < minthreshold) | |
39037602 | 2447 | minthreshold = ifcookie->threshold; |
39236c6e A |
2448 | } |
2449 | lck_mtx_unlock(&state->mtx); | |
2450 | } | |
2451 | lck_mtx_unlock(&nstat_mtx); | |
2452 | /* | |
2453 | * Reset if_data_threshold or disable it. | |
2454 | */ | |
2455 | ifcookie = (struct nstat_ifnet_cookie *)cookie; | |
2456 | ifp = ifcookie->ifp; | |
2457 | if (ifnet_is_attached(ifp, 1)) { | |
2458 | ifnet_lock_exclusive(ifp); | |
2459 | if (minthreshold == UINT64_MAX) | |
2460 | ifp->if_data_threshold = 0; | |
2461 | else | |
2462 | ifp->if_data_threshold = minthreshold; | |
2463 | ifnet_lock_done(ifp); | |
39037602 | 2464 | ifnet_decr_iorefcnt(ifp); |
39236c6e A |
2465 | } |
2466 | ifnet_release(ifp); | |
2467 | OSFree(ifcookie, sizeof(*ifcookie), nstat_malloc_tag); | |
2468 | } | |
2469 | ||
3e170ce0 A |
2470 | static void |
2471 | nstat_ifnet_copy_link_status( | |
2472 | struct ifnet *ifp, | |
2473 | struct nstat_ifnet_descriptor *desc) | |
2474 | { | |
2475 | struct if_link_status *ifsr = ifp->if_link_status; | |
2476 | nstat_ifnet_desc_link_status *link_status = &desc->link_status; | |
2477 | ||
2478 | link_status->link_status_type = NSTAT_IFNET_DESC_LINK_STATUS_TYPE_NONE; | |
2479 | if (ifsr == NULL) | |
2480 | return; | |
2481 | ||
2482 | lck_rw_lock_shared(&ifp->if_link_status_lock); | |
2483 | ||
2484 | if (ifp->if_type == IFT_CELLULAR) { | |
2485 | ||
2486 | nstat_ifnet_desc_cellular_status *cell_status = &link_status->u.cellular; | |
2487 | struct if_cellular_status_v1 *if_cell_sr = | |
2488 | &ifsr->ifsr_u.ifsr_cell.if_cell_u.if_status_v1; | |
2489 | ||
2490 | if (ifsr->ifsr_version != IF_CELLULAR_STATUS_REPORT_VERSION_1) | |
2491 | goto done; | |
2492 | ||
2493 | link_status->link_status_type = NSTAT_IFNET_DESC_LINK_STATUS_TYPE_CELLULAR; | |
2494 | ||
2495 | if (if_cell_sr->valid_bitmask & IF_CELL_LINK_QUALITY_METRIC_VALID) { | |
2496 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_LINK_QUALITY_METRIC_VALID; | |
2497 | cell_status->link_quality_metric = if_cell_sr->link_quality_metric; | |
2498 | } | |
2499 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_EFFECTIVE_BANDWIDTH_VALID) { | |
2500 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_EFFECTIVE_BANDWIDTH_VALID; | |
2501 | cell_status->ul_effective_bandwidth = if_cell_sr->ul_effective_bandwidth; | |
2502 | } | |
2503 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_MAX_BANDWIDTH_VALID) { | |
2504 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_MAX_BANDWIDTH_VALID; | |
2505 | cell_status->ul_max_bandwidth = if_cell_sr->ul_max_bandwidth; | |
2506 | } | |
2507 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_MIN_LATENCY_VALID) { | |
2508 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_MIN_LATENCY_VALID; | |
2509 | cell_status->ul_min_latency = if_cell_sr->ul_min_latency; | |
2510 | } | |
2511 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_EFFECTIVE_LATENCY_VALID) { | |
2512 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_EFFECTIVE_LATENCY_VALID; | |
2513 | cell_status->ul_effective_latency = if_cell_sr->ul_effective_latency; | |
2514 | } | |
2515 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_MAX_LATENCY_VALID) { | |
2516 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_MAX_LATENCY_VALID; | |
2517 | cell_status->ul_max_latency = if_cell_sr->ul_max_latency; | |
2518 | } | |
2519 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_RETXT_LEVEL_VALID) { | |
2520 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_RETXT_LEVEL_VALID; | |
2521 | if (if_cell_sr->ul_retxt_level == IF_CELL_UL_RETXT_LEVEL_NONE) | |
2522 | cell_status->ul_retxt_level = NSTAT_IFNET_DESC_CELL_UL_RETXT_LEVEL_NONE; | |
2523 | else if (if_cell_sr->ul_retxt_level == IF_CELL_UL_RETXT_LEVEL_LOW) | |
2524 | cell_status->ul_retxt_level = NSTAT_IFNET_DESC_CELL_UL_RETXT_LEVEL_LOW; | |
2525 | else if (if_cell_sr->ul_retxt_level == IF_CELL_UL_RETXT_LEVEL_MEDIUM) | |
2526 | cell_status->ul_retxt_level = NSTAT_IFNET_DESC_CELL_UL_RETXT_LEVEL_MEDIUM; | |
2527 | else if (if_cell_sr->ul_retxt_level == IF_CELL_UL_RETXT_LEVEL_HIGH) | |
2528 | cell_status->ul_retxt_level = NSTAT_IFNET_DESC_CELL_UL_RETXT_LEVEL_HIGH; | |
2529 | else | |
2530 | cell_status->valid_bitmask &= ~NSTAT_IFNET_DESC_CELL_UL_RETXT_LEVEL_VALID; | |
2531 | } | |
2532 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_BYTES_LOST_VALID) { | |
2533 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_BYTES_LOST_VALID; | |
2534 | cell_status->ul_bytes_lost = if_cell_sr->ul_bytes_lost; | |
2535 | } | |
2536 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_MIN_QUEUE_SIZE_VALID) { | |
2537 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_MIN_QUEUE_SIZE_VALID; | |
2538 | cell_status->ul_min_queue_size = if_cell_sr->ul_min_queue_size; | |
2539 | } | |
2540 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_AVG_QUEUE_SIZE_VALID) { | |
2541 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_AVG_QUEUE_SIZE_VALID; | |
2542 | cell_status->ul_avg_queue_size = if_cell_sr->ul_avg_queue_size; | |
2543 | } | |
2544 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_MAX_QUEUE_SIZE_VALID) { | |
2545 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_UL_MAX_QUEUE_SIZE_VALID; | |
2546 | cell_status->ul_max_queue_size = if_cell_sr->ul_max_queue_size; | |
2547 | } | |
2548 | if (if_cell_sr->valid_bitmask & IF_CELL_DL_EFFECTIVE_BANDWIDTH_VALID) { | |
2549 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_DL_EFFECTIVE_BANDWIDTH_VALID; | |
2550 | cell_status->dl_effective_bandwidth = if_cell_sr->dl_effective_bandwidth; | |
2551 | } | |
2552 | if (if_cell_sr->valid_bitmask & IF_CELL_DL_MAX_BANDWIDTH_VALID) { | |
2553 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_DL_MAX_BANDWIDTH_VALID; | |
2554 | cell_status->dl_max_bandwidth = if_cell_sr->dl_max_bandwidth; | |
2555 | } | |
2556 | if (if_cell_sr->valid_bitmask & IF_CELL_CONFIG_INACTIVITY_TIME_VALID) { | |
2557 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_CONFIG_INACTIVITY_TIME_VALID; | |
2558 | cell_status->config_inactivity_time = if_cell_sr->config_inactivity_time; | |
2559 | } | |
2560 | if (if_cell_sr->valid_bitmask & IF_CELL_CONFIG_BACKOFF_TIME_VALID) { | |
2561 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_CONFIG_BACKOFF_TIME_VALID; | |
2562 | cell_status->config_backoff_time = if_cell_sr->config_backoff_time; | |
2563 | } | |
39037602 A |
2564 | if (if_cell_sr->valid_bitmask & IF_CELL_UL_MSS_RECOMMENDED_VALID) { |
2565 | cell_status->valid_bitmask |= NSTAT_IFNET_DESC_CELL_MSS_RECOMMENDED_VALID; | |
2566 | cell_status->mss_recommended = if_cell_sr->mss_recommended; | |
2567 | } | |
3e170ce0 A |
2568 | } else if (ifp->if_subfamily == IFNET_SUBFAMILY_WIFI) { |
2569 | ||
2570 | nstat_ifnet_desc_wifi_status *wifi_status = &link_status->u.wifi; | |
2571 | struct if_wifi_status_v1 *if_wifi_sr = | |
2572 | &ifsr->ifsr_u.ifsr_wifi.if_wifi_u.if_status_v1; | |
2573 | ||
2574 | if (ifsr->ifsr_version != IF_WIFI_STATUS_REPORT_VERSION_1) | |
2575 | goto done; | |
2576 | ||
2577 | link_status->link_status_type = NSTAT_IFNET_DESC_LINK_STATUS_TYPE_WIFI; | |
2578 | ||
2579 | if (if_wifi_sr->valid_bitmask & IF_WIFI_LINK_QUALITY_METRIC_VALID) { | |
2580 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_LINK_QUALITY_METRIC_VALID; | |
2581 | wifi_status->link_quality_metric = if_wifi_sr->link_quality_metric; | |
2582 | } | |
2583 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_EFFECTIVE_BANDWIDTH_VALID) { | |
2584 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_EFFECTIVE_BANDWIDTH_VALID; | |
2585 | wifi_status->ul_effective_bandwidth = if_wifi_sr->ul_effective_bandwidth; | |
2586 | } | |
2587 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_MAX_BANDWIDTH_VALID) { | |
2588 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_MAX_BANDWIDTH_VALID; | |
2589 | wifi_status->ul_max_bandwidth = if_wifi_sr->ul_max_bandwidth; | |
2590 | } | |
2591 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_MIN_LATENCY_VALID) { | |
2592 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_MIN_LATENCY_VALID; | |
2593 | wifi_status->ul_min_latency = if_wifi_sr->ul_min_latency; | |
2594 | } | |
2595 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_EFFECTIVE_LATENCY_VALID) { | |
2596 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_EFFECTIVE_LATENCY_VALID; | |
2597 | wifi_status->ul_effective_latency = if_wifi_sr->ul_effective_latency; | |
2598 | } | |
2599 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_MAX_LATENCY_VALID) { | |
2600 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_MAX_LATENCY_VALID; | |
2601 | wifi_status->ul_max_latency = if_wifi_sr->ul_max_latency; | |
2602 | } | |
2603 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_RETXT_LEVEL_VALID) { | |
2604 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_RETXT_LEVEL_VALID; | |
2605 | if (if_wifi_sr->ul_retxt_level == IF_WIFI_UL_RETXT_LEVEL_NONE) | |
2606 | wifi_status->ul_retxt_level = NSTAT_IFNET_DESC_WIFI_UL_RETXT_LEVEL_NONE; | |
2607 | else if (if_wifi_sr->ul_retxt_level == IF_WIFI_UL_RETXT_LEVEL_LOW) | |
2608 | wifi_status->ul_retxt_level = NSTAT_IFNET_DESC_WIFI_UL_RETXT_LEVEL_LOW; | |
2609 | else if (if_wifi_sr->ul_retxt_level == IF_WIFI_UL_RETXT_LEVEL_MEDIUM) | |
2610 | wifi_status->ul_retxt_level = NSTAT_IFNET_DESC_WIFI_UL_RETXT_LEVEL_MEDIUM; | |
2611 | else if (if_wifi_sr->ul_retxt_level == IF_WIFI_UL_RETXT_LEVEL_HIGH) | |
2612 | wifi_status->ul_retxt_level = NSTAT_IFNET_DESC_WIFI_UL_RETXT_LEVEL_HIGH; | |
2613 | else | |
2614 | wifi_status->valid_bitmask &= ~NSTAT_IFNET_DESC_WIFI_UL_RETXT_LEVEL_VALID; | |
2615 | } | |
2616 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_BYTES_LOST_VALID) { | |
2617 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_BYTES_LOST_VALID; | |
2618 | wifi_status->ul_bytes_lost = if_wifi_sr->ul_bytes_lost; | |
2619 | } | |
2620 | if (if_wifi_sr->valid_bitmask & IF_WIFI_UL_ERROR_RATE_VALID) { | |
2621 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_UL_ERROR_RATE_VALID; | |
2622 | wifi_status->ul_error_rate = if_wifi_sr->ul_error_rate; | |
2623 | } | |
2624 | if (if_wifi_sr->valid_bitmask & IF_WIFI_DL_EFFECTIVE_BANDWIDTH_VALID) { | |
2625 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_DL_EFFECTIVE_BANDWIDTH_VALID; | |
2626 | wifi_status->dl_effective_bandwidth = if_wifi_sr->dl_effective_bandwidth; | |
2627 | } | |
2628 | if (if_wifi_sr->valid_bitmask & IF_WIFI_DL_MAX_BANDWIDTH_VALID) { | |
2629 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_DL_MAX_BANDWIDTH_VALID; | |
2630 | wifi_status->dl_max_bandwidth = if_wifi_sr->dl_max_bandwidth; | |
2631 | } | |
2632 | if (if_wifi_sr->valid_bitmask & IF_WIFI_DL_MIN_LATENCY_VALID) { | |
2633 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_DL_MIN_LATENCY_VALID; | |
2634 | wifi_status->dl_min_latency = if_wifi_sr->dl_min_latency; | |
2635 | } | |
2636 | if (if_wifi_sr->valid_bitmask & IF_WIFI_DL_EFFECTIVE_LATENCY_VALID) { | |
2637 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_DL_EFFECTIVE_LATENCY_VALID; | |
2638 | wifi_status->dl_effective_latency = if_wifi_sr->dl_effective_latency; | |
2639 | } | |
2640 | if (if_wifi_sr->valid_bitmask & IF_WIFI_DL_MAX_LATENCY_VALID) { | |
2641 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_DL_MAX_LATENCY_VALID; | |
2642 | wifi_status->dl_max_latency = if_wifi_sr->dl_max_latency; | |
2643 | } | |
2644 | if (if_wifi_sr->valid_bitmask & IF_WIFI_DL_ERROR_RATE_VALID) { | |
2645 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_DL_ERROR_RATE_VALID; | |
2646 | wifi_status->dl_error_rate = if_wifi_sr->dl_error_rate; | |
2647 | } | |
2648 | if (if_wifi_sr->valid_bitmask & IF_WIFI_CONFIG_FREQUENCY_VALID) { | |
2649 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_CONFIG_FREQUENCY_VALID; | |
2650 | if (if_wifi_sr->config_frequency == IF_WIFI_CONFIG_FREQUENCY_2_4_GHZ) | |
2651 | wifi_status->config_frequency = NSTAT_IFNET_DESC_WIFI_CONFIG_FREQUENCY_2_4_GHZ; | |
2652 | else if (if_wifi_sr->config_frequency == IF_WIFI_CONFIG_FREQUENCY_5_0_GHZ) | |
2653 | wifi_status->config_frequency = NSTAT_IFNET_DESC_WIFI_CONFIG_FREQUENCY_5_0_GHZ; | |
2654 | else | |
2655 | wifi_status->valid_bitmask &= ~NSTAT_IFNET_DESC_WIFI_CONFIG_FREQUENCY_VALID; | |
2656 | } | |
2657 | if (if_wifi_sr->valid_bitmask & IF_WIFI_CONFIG_MULTICAST_RATE_VALID) { | |
2658 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_CONFIG_MULTICAST_RATE_VALID; | |
2659 | wifi_status->config_multicast_rate = if_wifi_sr->config_multicast_rate; | |
2660 | } | |
2661 | if (if_wifi_sr->valid_bitmask & IF_WIFI_CONFIG_SCAN_COUNT_VALID) { | |
2662 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_CONFIG_SCAN_COUNT_VALID; | |
2663 | wifi_status->scan_count = if_wifi_sr->scan_count; | |
2664 | } | |
2665 | if (if_wifi_sr->valid_bitmask & IF_WIFI_CONFIG_SCAN_DURATION_VALID) { | |
2666 | wifi_status->valid_bitmask |= NSTAT_IFNET_DESC_WIFI_CONFIG_SCAN_DURATION_VALID; | |
2667 | wifi_status->scan_duration = if_wifi_sr->scan_duration; | |
2668 | } | |
2669 | } | |
2670 | ||
2671 | done: | |
2672 | lck_rw_done(&ifp->if_link_status_lock); | |
2673 | } | |
2674 | ||
4bd07ac2 A |
2675 | static u_int64_t nstat_ifnet_last_report_time = 0; |
2676 | extern int tcp_report_stats_interval; | |
2677 | ||
490019cf A |
2678 | static void |
2679 | nstat_ifnet_compute_percentages(struct if_tcp_ecn_perf_stat *ifst) | |
2680 | { | |
2681 | /* Retransmit percentage */ | |
2682 | if (ifst->total_rxmitpkts > 0 && ifst->total_txpkts > 0) { | |
2683 | /* shift by 10 for precision */ | |
2684 | ifst->rxmit_percent = | |
2685 | ((ifst->total_rxmitpkts << 10) * 100) / ifst->total_txpkts; | |
2686 | } else { | |
2687 | ifst->rxmit_percent = 0; | |
2688 | } | |
2689 | ||
2690 | /* Out-of-order percentage */ | |
2691 | if (ifst->total_oopkts > 0 && ifst->total_rxpkts > 0) { | |
2692 | /* shift by 10 for precision */ | |
2693 | ifst->oo_percent = | |
2694 | ((ifst->total_oopkts << 10) * 100) / ifst->total_rxpkts; | |
2695 | } else { | |
2696 | ifst->oo_percent = 0; | |
2697 | } | |
2698 | ||
2699 | /* Reorder percentage */ | |
2700 | if (ifst->total_reorderpkts > 0 && | |
2701 | (ifst->total_txpkts + ifst->total_rxpkts) > 0) { | |
2702 | /* shift by 10 for precision */ | |
2703 | ifst->reorder_percent = | |
2704 | ((ifst->total_reorderpkts << 10) * 100) / | |
2705 | (ifst->total_txpkts + ifst->total_rxpkts); | |
2706 | } else { | |
2707 | ifst->reorder_percent = 0; | |
2708 | } | |
2709 | } | |
2710 | ||
2711 | static void | |
2712 | nstat_ifnet_normalize_counter(struct if_tcp_ecn_stat *if_st) | |
2713 | { | |
2714 | u_int64_t ecn_on_conn, ecn_off_conn; | |
2715 | ||
2716 | if (if_st == NULL) | |
2717 | return; | |
2718 | ecn_on_conn = if_st->ecn_client_success + | |
2719 | if_st->ecn_server_success; | |
2720 | ecn_off_conn = if_st->ecn_off_conn + | |
2721 | (if_st->ecn_client_setup - if_st->ecn_client_success) + | |
2722 | (if_st->ecn_server_setup - if_st->ecn_server_success); | |
2723 | ||
2724 | /* | |
2725 | * report sack episodes, rst_drop and rxmit_drop | |
2726 | * as a ratio per connection, shift by 10 for precision | |
2727 | */ | |
2728 | if (ecn_on_conn > 0) { | |
2729 | if_st->ecn_on.sack_episodes = | |
2730 | (if_st->ecn_on.sack_episodes << 10) / ecn_on_conn; | |
2731 | if_st->ecn_on.rst_drop = | |
2732 | (if_st->ecn_on.rst_drop << 10) * 100 / ecn_on_conn; | |
2733 | if_st->ecn_on.rxmit_drop = | |
2734 | (if_st->ecn_on.rxmit_drop << 10) * 100 / ecn_on_conn; | |
2735 | } else { | |
2736 | /* set to zero, just in case */ | |
2737 | if_st->ecn_on.sack_episodes = 0; | |
2738 | if_st->ecn_on.rst_drop = 0; | |
2739 | if_st->ecn_on.rxmit_drop = 0; | |
2740 | } | |
2741 | ||
2742 | if (ecn_off_conn > 0) { | |
2743 | if_st->ecn_off.sack_episodes = | |
2744 | (if_st->ecn_off.sack_episodes << 10) / ecn_off_conn; | |
2745 | if_st->ecn_off.rst_drop = | |
2746 | (if_st->ecn_off.rst_drop << 10) * 100 / ecn_off_conn; | |
2747 | if_st->ecn_off.rxmit_drop = | |
2748 | (if_st->ecn_off.rxmit_drop << 10) * 100 / ecn_off_conn; | |
2749 | } else { | |
2750 | if_st->ecn_off.sack_episodes = 0; | |
2751 | if_st->ecn_off.rst_drop = 0; | |
2752 | if_st->ecn_off.rxmit_drop = 0; | |
2753 | } | |
2754 | if_st->ecn_total_conn = ecn_off_conn + ecn_on_conn; | |
2755 | } | |
2756 | ||
39037602 | 2757 | static void |
4bd07ac2 A |
2758 | nstat_ifnet_report_ecn_stats(void) |
2759 | { | |
2760 | u_int64_t uptime, last_report_time; | |
2761 | struct nstat_sysinfo_data data; | |
2762 | struct nstat_sysinfo_ifnet_ecn_stats *st; | |
2763 | struct ifnet *ifp; | |
2764 | ||
2765 | uptime = net_uptime(); | |
2766 | ||
2767 | if ((int)(uptime - nstat_ifnet_last_report_time) < | |
2768 | tcp_report_stats_interval) | |
2769 | return; | |
2770 | ||
2771 | last_report_time = nstat_ifnet_last_report_time; | |
2772 | nstat_ifnet_last_report_time = uptime; | |
2773 | data.flags = NSTAT_SYSINFO_IFNET_ECN_STATS; | |
2774 | st = &data.u.ifnet_ecn_stats; | |
2775 | ||
2776 | ifnet_head_lock_shared(); | |
2777 | TAILQ_FOREACH(ifp, &ifnet_head, if_link) { | |
2778 | if (ifp->if_ipv4_stat == NULL || ifp->if_ipv6_stat == NULL) | |
2779 | continue; | |
2780 | ||
2781 | if ((ifp->if_refflags & (IFRF_ATTACHED | IFRF_DETACHING)) != | |
2782 | IFRF_ATTACHED) | |
2783 | continue; | |
2784 | ||
2785 | /* Limit reporting to Wifi, Ethernet and cellular. */ | |
2786 | if (!(IFNET_IS_ETHERNET(ifp) || IFNET_IS_CELLULAR(ifp))) | |
2787 | continue; | |
2788 | ||
2789 | bzero(st, sizeof(*st)); | |
2790 | if (IFNET_IS_CELLULAR(ifp)) { | |
2791 | st->ifnet_type = NSTAT_IFNET_ECN_TYPE_CELLULAR; | |
2792 | } else if (IFNET_IS_WIFI(ifp)) { | |
2793 | st->ifnet_type = NSTAT_IFNET_ECN_TYPE_WIFI; | |
2794 | } else { | |
2795 | st->ifnet_type = NSTAT_IFNET_ECN_TYPE_ETHERNET; | |
2796 | } | |
39037602 | 2797 | data.unsent_data_cnt = ifp->if_unsent_data_cnt; |
4bd07ac2 A |
2798 | /* skip if there was no update since last report */ |
2799 | if (ifp->if_ipv4_stat->timestamp <= 0 || | |
2800 | ifp->if_ipv4_stat->timestamp < last_report_time) | |
2801 | goto v6; | |
2802 | st->ifnet_proto = NSTAT_IFNET_ECN_PROTO_IPV4; | |
490019cf A |
2803 | /* compute percentages using packet counts */ |
2804 | nstat_ifnet_compute_percentages(&ifp->if_ipv4_stat->ecn_on); | |
2805 | nstat_ifnet_compute_percentages(&ifp->if_ipv4_stat->ecn_off); | |
2806 | nstat_ifnet_normalize_counter(ifp->if_ipv4_stat); | |
4bd07ac2 A |
2807 | bcopy(ifp->if_ipv4_stat, &st->ecn_stat, |
2808 | sizeof(st->ecn_stat)); | |
2809 | nstat_sysinfo_send_data(&data); | |
2810 | bzero(ifp->if_ipv4_stat, sizeof(*ifp->if_ipv4_stat)); | |
2811 | ||
2812 | v6: | |
2813 | /* skip if there was no update since last report */ | |
2814 | if (ifp->if_ipv6_stat->timestamp <= 0 || | |
2815 | ifp->if_ipv6_stat->timestamp < last_report_time) | |
2816 | continue; | |
2817 | st->ifnet_proto = NSTAT_IFNET_ECN_PROTO_IPV6; | |
490019cf A |
2818 | |
2819 | /* compute percentages using packet counts */ | |
2820 | nstat_ifnet_compute_percentages(&ifp->if_ipv6_stat->ecn_on); | |
2821 | nstat_ifnet_compute_percentages(&ifp->if_ipv6_stat->ecn_off); | |
2822 | nstat_ifnet_normalize_counter(ifp->if_ipv6_stat); | |
4bd07ac2 A |
2823 | bcopy(ifp->if_ipv6_stat, &st->ecn_stat, |
2824 | sizeof(st->ecn_stat)); | |
2825 | nstat_sysinfo_send_data(&data); | |
2826 | ||
2827 | /* Zero the stats in ifp */ | |
2828 | bzero(ifp->if_ipv6_stat, sizeof(*ifp->if_ipv6_stat)); | |
2829 | } | |
2830 | ifnet_head_done(); | |
2831 | ||
2832 | } | |
2833 | ||
39236c6e A |
2834 | static errno_t |
2835 | nstat_ifnet_copy_descriptor( | |
2836 | nstat_provider_cookie_t cookie, | |
2837 | void *data, | |
2838 | u_int32_t len) | |
39037602 | 2839 | { |
39236c6e A |
2840 | nstat_ifnet_descriptor *desc = (nstat_ifnet_descriptor *)data; |
2841 | struct nstat_ifnet_cookie *ifcookie = | |
2842 | (struct nstat_ifnet_cookie *)cookie; | |
2843 | struct ifnet *ifp = ifcookie->ifp; | |
2844 | ||
2845 | if (len < sizeof(nstat_ifnet_descriptor)) | |
2846 | return EINVAL; | |
39037602 | 2847 | |
39236c6e A |
2848 | if (nstat_ifnet_gone(cookie)) |
2849 | return EINVAL; | |
2850 | ||
2851 | bzero(desc, sizeof(*desc)); | |
2852 | ifnet_lock_shared(ifp); | |
2853 | strlcpy(desc->name, ifp->if_xname, sizeof(desc->name)); | |
2854 | desc->ifindex = ifp->if_index; | |
2855 | desc->threshold = ifp->if_data_threshold; | |
2856 | desc->type = ifp->if_type; | |
2857 | if (ifp->if_desc.ifd_len < sizeof(desc->description)) | |
2858 | memcpy(desc->description, ifp->if_desc.ifd_desc, | |
2859 | sizeof(desc->description)); | |
3e170ce0 | 2860 | nstat_ifnet_copy_link_status(ifp, desc); |
39236c6e | 2861 | ifnet_lock_done(ifp); |
39236c6e A |
2862 | return 0; |
2863 | } | |
2864 | ||
2865 | static void | |
2866 | nstat_init_ifnet_provider(void) | |
2867 | { | |
2868 | bzero(&nstat_ifnet_provider, sizeof(nstat_ifnet_provider)); | |
2869 | nstat_ifnet_provider.nstat_provider_id = NSTAT_PROVIDER_IFNET; | |
2870 | nstat_ifnet_provider.nstat_descriptor_length = sizeof(nstat_ifnet_descriptor); | |
2871 | nstat_ifnet_provider.nstat_lookup = nstat_ifnet_lookup; | |
2872 | nstat_ifnet_provider.nstat_gone = nstat_ifnet_gone; | |
2873 | nstat_ifnet_provider.nstat_counts = nstat_ifnet_counts; | |
2874 | nstat_ifnet_provider.nstat_watcher_add = NULL; | |
2875 | nstat_ifnet_provider.nstat_watcher_remove = NULL; | |
2876 | nstat_ifnet_provider.nstat_copy_descriptor = nstat_ifnet_copy_descriptor; | |
2877 | nstat_ifnet_provider.nstat_release = nstat_ifnet_release; | |
2878 | nstat_ifnet_provider.next = nstat_providers; | |
2879 | nstat_providers = &nstat_ifnet_provider; | |
2880 | } | |
2881 | ||
2882 | __private_extern__ void | |
2883 | nstat_ifnet_threshold_reached(unsigned int ifindex) | |
2884 | { | |
2885 | nstat_control_state *state; | |
2886 | nstat_src *src; | |
2887 | struct ifnet *ifp; | |
2888 | struct nstat_ifnet_cookie *ifcookie; | |
2889 | ||
2890 | lck_mtx_lock(&nstat_mtx); | |
2891 | for (state = nstat_controls; state; state = state->ncs_next) | |
2892 | { | |
2893 | lck_mtx_lock(&state->mtx); | |
2894 | for (src = state->ncs_srcs; src; src = src->next) | |
2895 | { | |
2896 | if (src->provider != &nstat_ifnet_provider) | |
2897 | continue; | |
2898 | ifcookie = (struct nstat_ifnet_cookie *)src->cookie; | |
2899 | ifp = ifcookie->ifp; | |
2900 | if (ifp->if_index != ifindex) | |
2901 | continue; | |
3e170ce0 | 2902 | nstat_control_send_counts(state, src, 0, 0, NULL); |
39236c6e A |
2903 | } |
2904 | lck_mtx_unlock(&state->mtx); | |
2905 | } | |
2906 | lck_mtx_unlock(&nstat_mtx); | |
2907 | } | |
2908 | ||
3e170ce0 | 2909 | #pragma mark -- Sysinfo -- |
fe8ab488 | 2910 | static void |
3e170ce0 | 2911 | nstat_set_keyval_scalar(nstat_sysinfo_keyval *kv, int key, u_int32_t val) |
fe8ab488 | 2912 | { |
3e170ce0 A |
2913 | kv->nstat_sysinfo_key = key; |
2914 | kv->nstat_sysinfo_flags = NSTAT_SYSINFO_FLAG_SCALAR; | |
2915 | kv->u.nstat_sysinfo_scalar = val; | |
fe8ab488 A |
2916 | } |
2917 | ||
2918 | static void | |
2919 | nstat_sysinfo_send_data_internal( | |
2920 | nstat_control_state *control, | |
fe8ab488 A |
2921 | nstat_sysinfo_data *data) |
2922 | { | |
2923 | nstat_msg_sysinfo_counts *syscnt = NULL; | |
490019cf | 2924 | size_t allocsize = 0, countsize = 0, nkeyvals = 0, finalsize = 0; |
fe8ab488 A |
2925 | nstat_sysinfo_keyval *kv; |
2926 | errno_t result = 0; | |
3e170ce0 | 2927 | size_t i = 0; |
39037602 | 2928 | |
fe8ab488 A |
2929 | allocsize = offsetof(nstat_msg_sysinfo_counts, counts); |
2930 | countsize = offsetof(nstat_sysinfo_counts, nstat_sysinfo_keyvals); | |
490019cf | 2931 | finalsize = allocsize; |
fe8ab488 A |
2932 | |
2933 | /* get number of key-vals for each kind of stat */ | |
2934 | switch (data->flags) | |
2935 | { | |
2936 | case NSTAT_SYSINFO_MBUF_STATS: | |
3e170ce0 A |
2937 | nkeyvals = sizeof(struct nstat_sysinfo_mbuf_stats) / |
2938 | sizeof(u_int32_t); | |
fe8ab488 A |
2939 | break; |
2940 | case NSTAT_SYSINFO_TCP_STATS: | |
3e170ce0 A |
2941 | nkeyvals = sizeof(struct nstat_sysinfo_tcp_stats) / |
2942 | sizeof(u_int32_t); | |
fe8ab488 | 2943 | break; |
4bd07ac2 A |
2944 | case NSTAT_SYSINFO_IFNET_ECN_STATS: |
2945 | nkeyvals = (sizeof(struct if_tcp_ecn_stat) / | |
2946 | sizeof(u_int64_t)); | |
490019cf | 2947 | |
4bd07ac2 A |
2948 | /* Two more keys for ifnet type and proto */ |
2949 | nkeyvals += 2; | |
39037602 A |
2950 | |
2951 | /* One key for unsent data. */ | |
2952 | nkeyvals++; | |
4bd07ac2 | 2953 | break; |
fe8ab488 A |
2954 | default: |
2955 | return; | |
2956 | } | |
2957 | countsize += sizeof(nstat_sysinfo_keyval) * nkeyvals; | |
2958 | allocsize += countsize; | |
2959 | ||
2960 | syscnt = OSMalloc(allocsize, nstat_malloc_tag); | |
2961 | if (syscnt == NULL) | |
2962 | return; | |
2963 | bzero(syscnt, allocsize); | |
39037602 | 2964 | |
fe8ab488 A |
2965 | kv = (nstat_sysinfo_keyval *) &syscnt->counts.nstat_sysinfo_keyvals; |
2966 | switch (data->flags) | |
2967 | { | |
2968 | case NSTAT_SYSINFO_MBUF_STATS: | |
2969 | { | |
3e170ce0 A |
2970 | nstat_set_keyval_scalar(&kv[i++], |
2971 | NSTAT_SYSINFO_KEY_MBUF_256B_TOTAL, | |
2972 | data->u.mb_stats.total_256b); | |
2973 | nstat_set_keyval_scalar(&kv[i++], | |
2974 | NSTAT_SYSINFO_KEY_MBUF_2KB_TOTAL, | |
2975 | data->u.mb_stats.total_2kb); | |
2976 | nstat_set_keyval_scalar(&kv[i++], | |
2977 | NSTAT_SYSINFO_KEY_MBUF_4KB_TOTAL, | |
2978 | data->u.mb_stats.total_4kb); | |
2979 | nstat_set_keyval_scalar(&kv[i++], | |
2980 | NSTAT_SYSINFO_MBUF_16KB_TOTAL, | |
2981 | data->u.mb_stats.total_16kb); | |
2982 | nstat_set_keyval_scalar(&kv[i++], | |
2983 | NSTAT_SYSINFO_KEY_SOCK_MBCNT, | |
2984 | data->u.mb_stats.sbmb_total); | |
2985 | nstat_set_keyval_scalar(&kv[i++], | |
2986 | NSTAT_SYSINFO_KEY_SOCK_ATMBLIMIT, | |
2987 | data->u.mb_stats.sb_atmbuflimit); | |
2988 | nstat_set_keyval_scalar(&kv[i++], | |
2989 | NSTAT_SYSINFO_MBUF_DRAIN_CNT, | |
2990 | data->u.mb_stats.draincnt); | |
2991 | nstat_set_keyval_scalar(&kv[i++], | |
2992 | NSTAT_SYSINFO_MBUF_MEM_RELEASED, | |
2993 | data->u.mb_stats.memreleased); | |
39037602 A |
2994 | nstat_set_keyval_scalar(&kv[i++], |
2995 | NSTAT_SYSINFO_KEY_SOCK_MBFLOOR, | |
2996 | data->u.mb_stats.sbmb_floor); | |
3e170ce0 | 2997 | VERIFY(i == nkeyvals); |
fe8ab488 A |
2998 | break; |
2999 | } | |
3000 | case NSTAT_SYSINFO_TCP_STATS: | |
3001 | { | |
3e170ce0 A |
3002 | nstat_set_keyval_scalar(&kv[i++], |
3003 | NSTAT_SYSINFO_KEY_IPV4_AVGRTT, | |
3004 | data->u.tcp_stats.ipv4_avgrtt); | |
3005 | nstat_set_keyval_scalar(&kv[i++], | |
3006 | NSTAT_SYSINFO_KEY_IPV6_AVGRTT, | |
3007 | data->u.tcp_stats.ipv6_avgrtt); | |
3008 | nstat_set_keyval_scalar(&kv[i++], | |
3009 | NSTAT_SYSINFO_KEY_SEND_PLR, | |
3010 | data->u.tcp_stats.send_plr); | |
3011 | nstat_set_keyval_scalar(&kv[i++], | |
3012 | NSTAT_SYSINFO_KEY_RECV_PLR, | |
3013 | data->u.tcp_stats.recv_plr); | |
3014 | nstat_set_keyval_scalar(&kv[i++], | |
3015 | NSTAT_SYSINFO_KEY_SEND_TLRTO, | |
3016 | data->u.tcp_stats.send_tlrto_rate); | |
3017 | nstat_set_keyval_scalar(&kv[i++], | |
3018 | NSTAT_SYSINFO_KEY_SEND_REORDERRATE, | |
3019 | data->u.tcp_stats.send_reorder_rate); | |
3020 | nstat_set_keyval_scalar(&kv[i++], | |
3021 | NSTAT_SYSINFO_CONNECTION_ATTEMPTS, | |
3022 | data->u.tcp_stats.connection_attempts); | |
3023 | nstat_set_keyval_scalar(&kv[i++], | |
3024 | NSTAT_SYSINFO_CONNECTION_ACCEPTS, | |
3025 | data->u.tcp_stats.connection_accepts); | |
3026 | nstat_set_keyval_scalar(&kv[i++], | |
3027 | NSTAT_SYSINFO_ECN_CLIENT_ENABLED, | |
3028 | data->u.tcp_stats.ecn_client_enabled); | |
3029 | nstat_set_keyval_scalar(&kv[i++], | |
3030 | NSTAT_SYSINFO_ECN_SERVER_ENABLED, | |
3031 | data->u.tcp_stats.ecn_server_enabled); | |
3032 | nstat_set_keyval_scalar(&kv[i++], | |
3033 | NSTAT_SYSINFO_ECN_CLIENT_SETUP, | |
3034 | data->u.tcp_stats.ecn_client_setup); | |
3035 | nstat_set_keyval_scalar(&kv[i++], | |
3036 | NSTAT_SYSINFO_ECN_SERVER_SETUP, | |
3037 | data->u.tcp_stats.ecn_server_setup); | |
3038 | nstat_set_keyval_scalar(&kv[i++], | |
3039 | NSTAT_SYSINFO_ECN_CLIENT_SUCCESS, | |
3040 | data->u.tcp_stats.ecn_client_success); | |
3041 | nstat_set_keyval_scalar(&kv[i++], | |
3042 | NSTAT_SYSINFO_ECN_SERVER_SUCCESS, | |
3043 | data->u.tcp_stats.ecn_server_success); | |
3044 | nstat_set_keyval_scalar(&kv[i++], | |
3045 | NSTAT_SYSINFO_ECN_NOT_SUPPORTED, | |
3046 | data->u.tcp_stats.ecn_not_supported); | |
3047 | nstat_set_keyval_scalar(&kv[i++], | |
3048 | NSTAT_SYSINFO_ECN_LOST_SYN, | |
3049 | data->u.tcp_stats.ecn_lost_syn); | |
3050 | nstat_set_keyval_scalar(&kv[i++], | |
3051 | NSTAT_SYSINFO_ECN_LOST_SYNACK, | |
3052 | data->u.tcp_stats.ecn_lost_synack); | |
3053 | nstat_set_keyval_scalar(&kv[i++], | |
3054 | NSTAT_SYSINFO_ECN_RECV_CE, | |
3055 | data->u.tcp_stats.ecn_recv_ce); | |
3056 | nstat_set_keyval_scalar(&kv[i++], | |
3057 | NSTAT_SYSINFO_ECN_RECV_ECE, | |
3058 | data->u.tcp_stats.ecn_recv_ece); | |
3059 | nstat_set_keyval_scalar(&kv[i++], | |
3060 | NSTAT_SYSINFO_ECN_SENT_ECE, | |
3061 | data->u.tcp_stats.ecn_sent_ece); | |
3062 | nstat_set_keyval_scalar(&kv[i++], | |
3063 | NSTAT_SYSINFO_ECN_CONN_RECV_CE, | |
3064 | data->u.tcp_stats.ecn_conn_recv_ce); | |
3065 | nstat_set_keyval_scalar(&kv[i++], | |
3066 | NSTAT_SYSINFO_ECN_CONN_RECV_ECE, | |
3067 | data->u.tcp_stats.ecn_conn_recv_ece); | |
3068 | nstat_set_keyval_scalar(&kv[i++], | |
3069 | NSTAT_SYSINFO_ECN_CONN_PLNOCE, | |
3070 | data->u.tcp_stats.ecn_conn_plnoce); | |
3071 | nstat_set_keyval_scalar(&kv[i++], | |
3072 | NSTAT_SYSINFO_ECN_CONN_PL_CE, | |
3073 | data->u.tcp_stats.ecn_conn_pl_ce); | |
3074 | nstat_set_keyval_scalar(&kv[i++], | |
3075 | NSTAT_SYSINFO_ECN_CONN_NOPL_CE, | |
3076 | data->u.tcp_stats.ecn_conn_nopl_ce); | |
4bd07ac2 A |
3077 | nstat_set_keyval_scalar(&kv[i++], |
3078 | NSTAT_SYSINFO_ECN_FALLBACK_SYNLOSS, | |
3079 | data->u.tcp_stats.ecn_fallback_synloss); | |
3080 | nstat_set_keyval_scalar(&kv[i++], | |
3081 | NSTAT_SYSINFO_ECN_FALLBACK_REORDER, | |
3082 | data->u.tcp_stats.ecn_fallback_reorder); | |
3083 | nstat_set_keyval_scalar(&kv[i++], | |
3084 | NSTAT_SYSINFO_ECN_FALLBACK_CE, | |
3085 | data->u.tcp_stats.ecn_fallback_ce); | |
3e170ce0 A |
3086 | nstat_set_keyval_scalar(&kv[i++], |
3087 | NSTAT_SYSINFO_TFO_SYN_DATA_RCV, | |
3088 | data->u.tcp_stats.tfo_syn_data_rcv); | |
3089 | nstat_set_keyval_scalar(&kv[i++], | |
3090 | NSTAT_SYSINFO_TFO_COOKIE_REQ_RCV, | |
3091 | data->u.tcp_stats.tfo_cookie_req_rcv); | |
3092 | nstat_set_keyval_scalar(&kv[i++], | |
3093 | NSTAT_SYSINFO_TFO_COOKIE_SENT, | |
3094 | data->u.tcp_stats.tfo_cookie_sent); | |
3095 | nstat_set_keyval_scalar(&kv[i++], | |
3096 | NSTAT_SYSINFO_TFO_COOKIE_INVALID, | |
3097 | data->u.tcp_stats.tfo_cookie_invalid); | |
3098 | nstat_set_keyval_scalar(&kv[i++], | |
3099 | NSTAT_SYSINFO_TFO_COOKIE_REQ, | |
3100 | data->u.tcp_stats.tfo_cookie_req); | |
3101 | nstat_set_keyval_scalar(&kv[i++], | |
3102 | NSTAT_SYSINFO_TFO_COOKIE_RCV, | |
3103 | data->u.tcp_stats.tfo_cookie_rcv); | |
3104 | nstat_set_keyval_scalar(&kv[i++], | |
3105 | NSTAT_SYSINFO_TFO_SYN_DATA_SENT, | |
3106 | data->u.tcp_stats.tfo_syn_data_sent); | |
3107 | nstat_set_keyval_scalar(&kv[i++], | |
3108 | NSTAT_SYSINFO_TFO_SYN_DATA_ACKED, | |
3109 | data->u.tcp_stats.tfo_syn_data_acked); | |
3110 | nstat_set_keyval_scalar(&kv[i++], | |
3111 | NSTAT_SYSINFO_TFO_SYN_LOSS, | |
3112 | data->u.tcp_stats.tfo_syn_loss); | |
3113 | nstat_set_keyval_scalar(&kv[i++], | |
3114 | NSTAT_SYSINFO_TFO_BLACKHOLE, | |
3115 | data->u.tcp_stats.tfo_blackhole); | |
39037602 A |
3116 | nstat_set_keyval_scalar(&kv[i++], |
3117 | NSTAT_SYSINFO_TFO_COOKIE_WRONG, | |
3118 | data->u.tcp_stats.tfo_cookie_wrong); | |
3119 | nstat_set_keyval_scalar(&kv[i++], | |
3120 | NSTAT_SYSINFO_TFO_NO_COOKIE_RCV, | |
3121 | data->u.tcp_stats.tfo_no_cookie_rcv); | |
3122 | nstat_set_keyval_scalar(&kv[i++], | |
3123 | NSTAT_SYSINFO_TFO_HEURISTICS_DISABLE, | |
3124 | data->u.tcp_stats.tfo_heuristics_disable); | |
3125 | nstat_set_keyval_scalar(&kv[i++], | |
3126 | NSTAT_SYSINFO_TFO_SEND_BLACKHOLE, | |
3127 | data->u.tcp_stats.tfo_sndblackhole); | |
3e170ce0 | 3128 | VERIFY(i == nkeyvals); |
fe8ab488 A |
3129 | break; |
3130 | } | |
4bd07ac2 A |
3131 | case NSTAT_SYSINFO_IFNET_ECN_STATS: |
3132 | { | |
3133 | nstat_set_keyval_scalar(&kv[i++], | |
3134 | NSTAT_SYSINFO_ECN_IFNET_TYPE, | |
3135 | data->u.ifnet_ecn_stats.ifnet_type); | |
3136 | nstat_set_keyval_scalar(&kv[i++], | |
3137 | NSTAT_SYSINFO_ECN_IFNET_PROTO, | |
3138 | data->u.ifnet_ecn_stats.ifnet_proto); | |
3139 | nstat_set_keyval_scalar(&kv[i++], | |
3140 | NSTAT_SYSINFO_ECN_IFNET_CLIENT_SETUP, | |
3141 | data->u.ifnet_ecn_stats.ecn_stat.ecn_client_setup); | |
3142 | nstat_set_keyval_scalar(&kv[i++], | |
3143 | NSTAT_SYSINFO_ECN_IFNET_SERVER_SETUP, | |
3144 | data->u.ifnet_ecn_stats.ecn_stat.ecn_server_setup); | |
3145 | nstat_set_keyval_scalar(&kv[i++], | |
3146 | NSTAT_SYSINFO_ECN_IFNET_CLIENT_SUCCESS, | |
3147 | data->u.ifnet_ecn_stats.ecn_stat.ecn_client_success); | |
3148 | nstat_set_keyval_scalar(&kv[i++], | |
3149 | NSTAT_SYSINFO_ECN_IFNET_SERVER_SUCCESS, | |
3150 | data->u.ifnet_ecn_stats.ecn_stat.ecn_server_success); | |
3151 | nstat_set_keyval_scalar(&kv[i++], | |
3152 | NSTAT_SYSINFO_ECN_IFNET_PEER_NOSUPPORT, | |
3153 | data->u.ifnet_ecn_stats.ecn_stat.ecn_peer_nosupport); | |
3154 | nstat_set_keyval_scalar(&kv[i++], | |
3155 | NSTAT_SYSINFO_ECN_IFNET_SYN_LOST, | |
3156 | data->u.ifnet_ecn_stats.ecn_stat.ecn_syn_lost); | |
3157 | nstat_set_keyval_scalar(&kv[i++], | |
3158 | NSTAT_SYSINFO_ECN_IFNET_SYNACK_LOST, | |
3159 | data->u.ifnet_ecn_stats.ecn_stat.ecn_synack_lost); | |
3160 | nstat_set_keyval_scalar(&kv[i++], | |
3161 | NSTAT_SYSINFO_ECN_IFNET_RECV_CE, | |
3162 | data->u.ifnet_ecn_stats.ecn_stat.ecn_recv_ce); | |
3163 | nstat_set_keyval_scalar(&kv[i++], | |
3164 | NSTAT_SYSINFO_ECN_IFNET_RECV_ECE, | |
3165 | data->u.ifnet_ecn_stats.ecn_stat.ecn_recv_ece); | |
3166 | nstat_set_keyval_scalar(&kv[i++], | |
3167 | NSTAT_SYSINFO_ECN_IFNET_CONN_RECV_CE, | |
3168 | data->u.ifnet_ecn_stats.ecn_stat.ecn_conn_recv_ce); | |
3169 | nstat_set_keyval_scalar(&kv[i++], | |
3170 | NSTAT_SYSINFO_ECN_IFNET_CONN_RECV_ECE, | |
3171 | data->u.ifnet_ecn_stats.ecn_stat.ecn_conn_recv_ece); | |
3172 | nstat_set_keyval_scalar(&kv[i++], | |
3173 | NSTAT_SYSINFO_ECN_IFNET_CONN_PLNOCE, | |
3174 | data->u.ifnet_ecn_stats.ecn_stat.ecn_conn_plnoce); | |
3175 | nstat_set_keyval_scalar(&kv[i++], | |
3176 | NSTAT_SYSINFO_ECN_IFNET_CONN_PLCE, | |
3177 | data->u.ifnet_ecn_stats.ecn_stat.ecn_conn_plce); | |
3178 | nstat_set_keyval_scalar(&kv[i++], | |
3179 | NSTAT_SYSINFO_ECN_IFNET_CONN_NOPLCE, | |
3180 | data->u.ifnet_ecn_stats.ecn_stat.ecn_conn_noplce); | |
3181 | nstat_set_keyval_scalar(&kv[i++], | |
3182 | NSTAT_SYSINFO_ECN_IFNET_FALLBACK_SYNLOSS, | |
3183 | data->u.ifnet_ecn_stats.ecn_stat.ecn_fallback_synloss); | |
3184 | nstat_set_keyval_scalar(&kv[i++], | |
3185 | NSTAT_SYSINFO_ECN_IFNET_FALLBACK_REORDER, | |
3186 | data->u.ifnet_ecn_stats.ecn_stat.ecn_fallback_reorder); | |
3187 | nstat_set_keyval_scalar(&kv[i++], | |
3188 | NSTAT_SYSINFO_ECN_IFNET_FALLBACK_CE, | |
3189 | data->u.ifnet_ecn_stats.ecn_stat.ecn_fallback_ce); | |
3190 | nstat_set_keyval_scalar(&kv[i++], | |
3191 | NSTAT_SYSINFO_ECN_IFNET_ON_RTT_AVG, | |
3192 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.rtt_avg); | |
3193 | nstat_set_keyval_scalar(&kv[i++], | |
3194 | NSTAT_SYSINFO_ECN_IFNET_ON_RTT_VAR, | |
3195 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.rtt_var); | |
3196 | nstat_set_keyval_scalar(&kv[i++], | |
3197 | NSTAT_SYSINFO_ECN_IFNET_ON_OOPERCENT, | |
3198 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.oo_percent); | |
3199 | nstat_set_keyval_scalar(&kv[i++], | |
3200 | NSTAT_SYSINFO_ECN_IFNET_ON_SACK_EPISODE, | |
3201 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.sack_episodes); | |
3202 | nstat_set_keyval_scalar(&kv[i++], | |
3203 | NSTAT_SYSINFO_ECN_IFNET_ON_REORDER_PERCENT, | |
3204 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.reorder_percent); | |
3205 | nstat_set_keyval_scalar(&kv[i++], | |
3206 | NSTAT_SYSINFO_ECN_IFNET_ON_RXMIT_PERCENT, | |
3207 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.rxmit_percent); | |
3208 | nstat_set_keyval_scalar(&kv[i++], | |
3209 | NSTAT_SYSINFO_ECN_IFNET_ON_RXMIT_DROP, | |
3210 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.rxmit_drop); | |
3211 | nstat_set_keyval_scalar(&kv[i++], | |
3212 | NSTAT_SYSINFO_ECN_IFNET_OFF_RTT_AVG, | |
3213 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.rtt_avg); | |
3214 | nstat_set_keyval_scalar(&kv[i++], | |
3215 | NSTAT_SYSINFO_ECN_IFNET_OFF_RTT_VAR, | |
3216 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.rtt_var); | |
3217 | nstat_set_keyval_scalar(&kv[i++], | |
3218 | NSTAT_SYSINFO_ECN_IFNET_OFF_OOPERCENT, | |
3219 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.oo_percent); | |
3220 | nstat_set_keyval_scalar(&kv[i++], | |
3221 | NSTAT_SYSINFO_ECN_IFNET_OFF_SACK_EPISODE, | |
3222 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.sack_episodes); | |
3223 | nstat_set_keyval_scalar(&kv[i++], | |
3224 | NSTAT_SYSINFO_ECN_IFNET_OFF_REORDER_PERCENT, | |
3225 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.reorder_percent); | |
3226 | nstat_set_keyval_scalar(&kv[i++], | |
3227 | NSTAT_SYSINFO_ECN_IFNET_OFF_RXMIT_PERCENT, | |
3228 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.rxmit_percent); | |
3229 | nstat_set_keyval_scalar(&kv[i++], | |
3230 | NSTAT_SYSINFO_ECN_IFNET_OFF_RXMIT_DROP, | |
3231 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.rxmit_drop); | |
490019cf A |
3232 | nstat_set_keyval_scalar(&kv[i++], |
3233 | NSTAT_SYSINFO_ECN_IFNET_ON_TOTAL_TXPKTS, | |
3234 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.total_txpkts); | |
3235 | nstat_set_keyval_scalar(&kv[i++], | |
3236 | NSTAT_SYSINFO_ECN_IFNET_ON_TOTAL_RXMTPKTS, | |
3237 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.total_rxmitpkts); | |
3238 | nstat_set_keyval_scalar(&kv[i++], | |
3239 | NSTAT_SYSINFO_ECN_IFNET_ON_TOTAL_RXPKTS, | |
3240 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.total_rxpkts); | |
3241 | nstat_set_keyval_scalar(&kv[i++], | |
3242 | NSTAT_SYSINFO_ECN_IFNET_ON_TOTAL_OOPKTS, | |
3243 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.total_oopkts); | |
3244 | nstat_set_keyval_scalar(&kv[i++], | |
3245 | NSTAT_SYSINFO_ECN_IFNET_ON_DROP_RST, | |
3246 | data->u.ifnet_ecn_stats.ecn_stat.ecn_on.rst_drop); | |
3247 | nstat_set_keyval_scalar(&kv[i++], | |
3248 | NSTAT_SYSINFO_ECN_IFNET_OFF_TOTAL_TXPKTS, | |
3249 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.total_txpkts); | |
3250 | nstat_set_keyval_scalar(&kv[i++], | |
3251 | NSTAT_SYSINFO_ECN_IFNET_OFF_TOTAL_RXMTPKTS, | |
3252 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.total_rxmitpkts); | |
3253 | nstat_set_keyval_scalar(&kv[i++], | |
3254 | NSTAT_SYSINFO_ECN_IFNET_OFF_TOTAL_RXPKTS, | |
3255 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.total_rxpkts); | |
3256 | nstat_set_keyval_scalar(&kv[i++], | |
3257 | NSTAT_SYSINFO_ECN_IFNET_OFF_TOTAL_OOPKTS, | |
3258 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.total_oopkts); | |
3259 | nstat_set_keyval_scalar(&kv[i++], | |
3260 | NSTAT_SYSINFO_ECN_IFNET_OFF_DROP_RST, | |
3261 | data->u.ifnet_ecn_stats.ecn_stat.ecn_off.rst_drop); | |
3262 | nstat_set_keyval_scalar(&kv[i++], | |
3263 | NSTAT_SYSINFO_ECN_IFNET_TOTAL_CONN, | |
3264 | data->u.ifnet_ecn_stats.ecn_stat.ecn_total_conn); | |
39037602 A |
3265 | nstat_set_keyval_scalar(&kv[i++], |
3266 | NSTAT_SYSINFO_IFNET_UNSENT_DATA, | |
3267 | data->unsent_data_cnt); | |
3268 | nstat_set_keyval_scalar(&kv[i++], | |
3269 | NSTAT_SYSINFO_ECN_IFNET_FALLBACK_DROPRST, | |
3270 | data->u.ifnet_ecn_stats.ecn_stat.ecn_fallback_droprst); | |
3271 | nstat_set_keyval_scalar(&kv[i++], | |
3272 | NSTAT_SYSINFO_ECN_IFNET_FALLBACK_DROPRXMT, | |
3273 | data->u.ifnet_ecn_stats.ecn_stat.ecn_fallback_droprxmt); | |
4bd07ac2 A |
3274 | break; |
3275 | } | |
fe8ab488 | 3276 | } |
fe8ab488 A |
3277 | if (syscnt != NULL) |
3278 | { | |
490019cf A |
3279 | VERIFY(i > 0 && i <= nkeyvals); |
3280 | countsize = offsetof(nstat_sysinfo_counts, | |
3281 | nstat_sysinfo_keyvals) + | |
3282 | sizeof(nstat_sysinfo_keyval) * i; | |
3283 | finalsize += countsize; | |
3284 | syscnt->hdr.type = NSTAT_MSG_TYPE_SYSINFO_COUNTS; | |
3285 | syscnt->hdr.length = finalsize; | |
3286 | syscnt->counts.nstat_sysinfo_len = countsize; | |
3287 | ||
fe8ab488 | 3288 | result = ctl_enqueuedata(control->ncs_kctl, |
490019cf | 3289 | control->ncs_unit, syscnt, finalsize, CTL_DATA_EOR); |
fe8ab488 | 3290 | if (result != 0) |
3e170ce0 A |
3291 | { |
3292 | nstat_stats.nstat_sysinfofailures += 1; | |
3293 | } | |
fe8ab488 A |
3294 | OSFree(syscnt, allocsize, nstat_malloc_tag); |
3295 | } | |
3296 | return; | |
3297 | } | |
3298 | ||
3299 | __private_extern__ void | |
3300 | nstat_sysinfo_send_data( | |
3301 | nstat_sysinfo_data *data) | |
3302 | { | |
3303 | nstat_control_state *control; | |
3304 | ||
3305 | lck_mtx_lock(&nstat_mtx); | |
3306 | for (control = nstat_controls; control; control = control->ncs_next) | |
3307 | { | |
3308 | lck_mtx_lock(&control->mtx); | |
3e170ce0 | 3309 | if ((control->ncs_flags & NSTAT_FLAG_SYSINFO_SUBSCRIBED) != 0) |
fe8ab488 | 3310 | { |
3e170ce0 A |
3311 | nstat_sysinfo_send_data_internal(control, data); |
3312 | } | |
fe8ab488 A |
3313 | lck_mtx_unlock(&control->mtx); |
3314 | } | |
3315 | lck_mtx_unlock(&nstat_mtx); | |
fe8ab488 A |
3316 | } |
3317 | ||
3318 | static void | |
3319 | nstat_sysinfo_generate_report(void) | |
3320 | { | |
3321 | mbuf_report_peak_usage(); | |
3322 | tcp_report_stats(); | |
4bd07ac2 | 3323 | nstat_ifnet_report_ecn_stats(); |
fe8ab488 A |
3324 | } |
3325 | ||
6d2010ae A |
3326 | #pragma mark -- Kernel Control Socket -- |
3327 | ||
6d2010ae A |
3328 | static kern_ctl_ref nstat_ctlref = NULL; |
3329 | static lck_grp_t *nstat_lck_grp = NULL; | |
3330 | ||
3331 | static errno_t nstat_control_connect(kern_ctl_ref kctl, struct sockaddr_ctl *sac, void **uinfo); | |
3332 | static errno_t nstat_control_disconnect(kern_ctl_ref kctl, u_int32_t unit, void *uinfo); | |
3333 | static errno_t nstat_control_send(kern_ctl_ref kctl, u_int32_t unit, void *uinfo, mbuf_t m, int flags); | |
6d2010ae | 3334 | |
3e170ce0 A |
3335 | static errno_t |
3336 | nstat_enqueue_success( | |
3337 | uint64_t context, | |
3338 | nstat_control_state *state, | |
3339 | u_int16_t flags) | |
3340 | { | |
3341 | nstat_msg_hdr success; | |
3342 | errno_t result; | |
6d2010ae | 3343 | |
3e170ce0 A |
3344 | bzero(&success, sizeof(success)); |
3345 | success.context = context; | |
3346 | success.type = NSTAT_MSG_TYPE_SUCCESS; | |
3347 | success.length = sizeof(success); | |
3348 | success.flags = flags; | |
3349 | result = ctl_enqueuedata(state->ncs_kctl, state->ncs_unit, &success, | |
3350 | sizeof(success), CTL_DATA_EOR | CTL_DATA_CRIT); | |
3351 | if (result != 0) { | |
3352 | if (nstat_debug != 0) | |
3353 | printf("%s: could not enqueue success message %d\n", | |
3354 | __func__, result); | |
3355 | nstat_stats.nstat_successmsgfailures += 1; | |
3356 | } | |
3357 | return result; | |
3358 | } | |
3359 | ||
3360 | static errno_t | |
3361 | nstat_control_send_goodbye( | |
3362 | nstat_control_state *state, | |
3363 | nstat_src *src) | |
6d2010ae | 3364 | { |
3e170ce0 A |
3365 | errno_t result = 0; |
3366 | int failed = 0; | |
3367 | ||
3368 | if (nstat_control_reporting_allowed(state, src)) | |
6d2010ae | 3369 | { |
3e170ce0 | 3370 | if ((state->ncs_flags & NSTAT_FLAG_SUPPORTS_UPDATES) != 0) |
6d2010ae | 3371 | { |
3e170ce0 A |
3372 | result = nstat_control_send_update(state, src, 0, NSTAT_MSG_HDR_FLAG_CLOSING, NULL); |
3373 | if (result != 0) | |
6d2010ae | 3374 | { |
3e170ce0 A |
3375 | failed = 1; |
3376 | if (nstat_debug != 0) | |
3377 | printf("%s - nstat_control_send_update() %d\n", __func__, result); | |
6d2010ae A |
3378 | } |
3379 | } | |
3e170ce0 A |
3380 | else |
3381 | { | |
3382 | // send one last counts notification | |
3383 | result = nstat_control_send_counts(state, src, 0, NSTAT_MSG_HDR_FLAG_CLOSING, NULL); | |
3384 | if (result != 0) | |
3385 | { | |
3386 | failed = 1; | |
3387 | if (nstat_debug != 0) | |
3388 | printf("%s - nstat_control_send_counts() %d\n", __func__, result); | |
3389 | } | |
3390 | ||
3391 | // send a last description | |
3392 | result = nstat_control_send_description(state, src, 0, NSTAT_MSG_HDR_FLAG_CLOSING); | |
3393 | if (result != 0) | |
3394 | { | |
3395 | failed = 1; | |
3396 | if (nstat_debug != 0) | |
3397 | printf("%s - nstat_control_send_description() %d\n", __func__, result); | |
3398 | } | |
3399 | } | |
3400 | } | |
3401 | ||
3402 | // send the source removed notification | |
3403 | result = nstat_control_send_removed(state, src); | |
3404 | if (result != 0 && nstat_debug) | |
3405 | { | |
3406 | failed = 1; | |
3407 | if (nstat_debug != 0) | |
3408 | printf("%s - nstat_control_send_removed() %d\n", __func__, result); | |
3409 | } | |
3410 | ||
3411 | if (failed != 0) | |
3412 | nstat_stats.nstat_control_send_goodbye_failures++; | |
3413 | ||
39037602 | 3414 | |
3e170ce0 A |
3415 | return result; |
3416 | } | |
3417 | ||
3418 | static errno_t | |
3419 | nstat_flush_accumulated_msgs( | |
3420 | nstat_control_state *state) | |
3421 | { | |
3422 | errno_t result = 0; | |
490019cf | 3423 | if (state->ncs_accumulated != NULL && mbuf_len(state->ncs_accumulated) > 0) |
3e170ce0 A |
3424 | { |
3425 | mbuf_pkthdr_setlen(state->ncs_accumulated, mbuf_len(state->ncs_accumulated)); | |
3426 | result = ctl_enqueuembuf(state->ncs_kctl, state->ncs_unit, state->ncs_accumulated, CTL_DATA_EOR); | |
490019cf | 3427 | if (result != 0) |
3e170ce0 A |
3428 | { |
3429 | nstat_stats.nstat_flush_accumulated_msgs_failures++; | |
3430 | if (nstat_debug != 0) | |
3431 | printf("%s - ctl_enqueuembuf failed: %d\n", __func__, result); | |
3432 | mbuf_freem(state->ncs_accumulated); | |
3433 | } | |
3434 | state->ncs_accumulated = NULL; | |
3435 | } | |
3436 | return result; | |
3437 | } | |
3438 | ||
3439 | static errno_t | |
3440 | nstat_accumulate_msg( | |
3441 | nstat_control_state *state, | |
3442 | nstat_msg_hdr *hdr, | |
3443 | size_t length) | |
3444 | { | |
3445 | if (state->ncs_accumulated && mbuf_trailingspace(state->ncs_accumulated) < length) | |
3446 | { | |
3447 | // Will send the current mbuf | |
3448 | nstat_flush_accumulated_msgs(state); | |
3449 | } | |
39037602 | 3450 | |
3e170ce0 | 3451 | errno_t result = 0; |
39037602 | 3452 | |
3e170ce0 A |
3453 | if (state->ncs_accumulated == NULL) |
3454 | { | |
3455 | unsigned int one = 1; | |
3456 | if (mbuf_allocpacket(MBUF_DONTWAIT, NSTAT_MAX_MSG_SIZE, &one, &state->ncs_accumulated) != 0) | |
3457 | { | |
3458 | if (nstat_debug != 0) | |
3459 | printf("%s - mbuf_allocpacket failed\n", __func__); | |
3460 | result = ENOMEM; | |
3461 | } | |
3462 | else | |
3463 | { | |
3464 | mbuf_setlen(state->ncs_accumulated, 0); | |
3465 | } | |
3466 | } | |
39037602 | 3467 | |
3e170ce0 A |
3468 | if (result == 0) |
3469 | { | |
3470 | hdr->length = length; | |
3471 | result = mbuf_copyback(state->ncs_accumulated, mbuf_len(state->ncs_accumulated), | |
3472 | length, hdr, MBUF_DONTWAIT); | |
3473 | } | |
39037602 | 3474 | |
3e170ce0 A |
3475 | if (result != 0) |
3476 | { | |
3477 | nstat_flush_accumulated_msgs(state); | |
3478 | if (nstat_debug != 0) | |
3479 | printf("%s - resorting to ctl_enqueuedata\n", __func__); | |
3480 | result = ctl_enqueuedata(state->ncs_kctl, state->ncs_unit, hdr, length, CTL_DATA_EOR); | |
3481 | } | |
39037602 | 3482 | |
3e170ce0 A |
3483 | if (result != 0) |
3484 | nstat_stats.nstat_accumulate_msg_failures++; | |
3485 | ||
3486 | return result; | |
3487 | } | |
3488 | ||
3489 | static void* | |
3490 | nstat_idle_check( | |
3491 | __unused thread_call_param_t p0, | |
3492 | __unused thread_call_param_t p1) | |
3493 | { | |
3494 | lck_mtx_lock(&nstat_mtx); | |
39037602 | 3495 | |
3e170ce0 | 3496 | nstat_idle_time = 0; |
39037602 | 3497 | |
3e170ce0 A |
3498 | nstat_control_state *control; |
3499 | nstat_src *dead = NULL; | |
3500 | nstat_src *dead_list = NULL; | |
3501 | for (control = nstat_controls; control; control = control->ncs_next) | |
3502 | { | |
3503 | lck_mtx_lock(&control->mtx); | |
3504 | nstat_src **srcpp = &control->ncs_srcs; | |
39037602 | 3505 | |
3e170ce0 A |
3506 | if (!(control->ncs_flags & NSTAT_FLAG_REQCOUNTS)) |
3507 | { | |
3508 | while(*srcpp != NULL) | |
3509 | { | |
3510 | if ((*srcpp)->provider->nstat_gone((*srcpp)->cookie)) | |
3511 | { | |
3512 | errno_t result; | |
39037602 | 3513 | |
3e170ce0 A |
3514 | // Pull it off the list |
3515 | dead = *srcpp; | |
3516 | *srcpp = (*srcpp)->next; | |
39037602 | 3517 | |
3e170ce0 | 3518 | result = nstat_control_send_goodbye(control, dead); |
39037602 | 3519 | |
3e170ce0 A |
3520 | // Put this on the list to release later |
3521 | dead->next = dead_list; | |
3522 | dead_list = dead; | |
3523 | } | |
3524 | else | |
3525 | { | |
3526 | srcpp = &(*srcpp)->next; | |
3527 | } | |
3528 | } | |
3529 | } | |
3530 | control->ncs_flags &= ~NSTAT_FLAG_REQCOUNTS; | |
3531 | lck_mtx_unlock(&control->mtx); | |
3532 | } | |
3533 | ||
3534 | if (nstat_controls) | |
3535 | { | |
3536 | clock_interval_to_deadline(60, NSEC_PER_SEC, &nstat_idle_time); | |
3537 | thread_call_func_delayed((thread_call_func_t)nstat_idle_check, NULL, nstat_idle_time); | |
6d2010ae | 3538 | } |
39037602 | 3539 | |
6d2010ae | 3540 | lck_mtx_unlock(&nstat_mtx); |
39037602 | 3541 | |
fe8ab488 A |
3542 | /* Generate any system level reports, if needed */ |
3543 | nstat_sysinfo_generate_report(); | |
39037602 | 3544 | |
6d2010ae A |
3545 | // Release the sources now that we aren't holding lots of locks |
3546 | while (dead_list) | |
3547 | { | |
3548 | dead = dead_list; | |
3549 | dead_list = dead->next; | |
39037602 | 3550 | |
316670eb | 3551 | nstat_control_cleanup_source(NULL, dead, FALSE); |
6d2010ae | 3552 | } |
39037602 | 3553 | |
6d2010ae A |
3554 | return NULL; |
3555 | } | |
3556 | ||
3557 | static void | |
3558 | nstat_control_register(void) | |
3559 | { | |
3560 | // Create our lock group first | |
3561 | lck_grp_attr_t *grp_attr = lck_grp_attr_alloc_init(); | |
3562 | lck_grp_attr_setdefault(grp_attr); | |
3563 | nstat_lck_grp = lck_grp_alloc_init("network statistics kctl", grp_attr); | |
3564 | lck_grp_attr_free(grp_attr); | |
39037602 | 3565 | |
6d2010ae | 3566 | lck_mtx_init(&nstat_mtx, nstat_lck_grp, NULL); |
39037602 | 3567 | |
6d2010ae A |
3568 | // Register the control |
3569 | struct kern_ctl_reg nstat_control; | |
39037602 | 3570 | bzero(&nstat_control, sizeof(nstat_control)); |
6d2010ae | 3571 | strlcpy(nstat_control.ctl_name, NET_STAT_CONTROL_NAME, sizeof(nstat_control.ctl_name)); |
fe8ab488 A |
3572 | nstat_control.ctl_flags = CTL_FLAG_REG_EXTENDED | CTL_FLAG_REG_CRIT; |
3573 | nstat_control.ctl_sendsize = nstat_sendspace; | |
3574 | nstat_control.ctl_recvsize = nstat_recvspace; | |
6d2010ae A |
3575 | nstat_control.ctl_connect = nstat_control_connect; |
3576 | nstat_control.ctl_disconnect = nstat_control_disconnect; | |
3577 | nstat_control.ctl_send = nstat_control_send; | |
39037602 | 3578 | |
316670eb | 3579 | ctl_register(&nstat_control, &nstat_ctlref); |
6d2010ae A |
3580 | } |
3581 | ||
3582 | static void | |
3583 | nstat_control_cleanup_source( | |
3584 | nstat_control_state *state, | |
316670eb A |
3585 | struct nstat_src *src, |
3586 | boolean_t locked) | |
6d2010ae | 3587 | { |
fe8ab488 | 3588 | errno_t result; |
39037602 | 3589 | |
3e170ce0 A |
3590 | if (state) |
3591 | { | |
fe8ab488 | 3592 | result = nstat_control_send_removed(state, src); |
3e170ce0 A |
3593 | if (result != 0) |
3594 | { | |
3595 | nstat_stats.nstat_control_cleanup_source_failures++; | |
3596 | if (nstat_debug != 0) | |
3597 | printf("%s - nstat_control_send_removed() %d\n", | |
3598 | __func__, result); | |
3599 | } | |
fe8ab488 | 3600 | } |
6d2010ae | 3601 | // Cleanup the source if we found it. |
316670eb | 3602 | src->provider->nstat_release(src->cookie, locked); |
6d2010ae A |
3603 | OSFree(src, sizeof(*src), nstat_malloc_tag); |
3604 | } | |
3605 | ||
3e170ce0 A |
3606 | |
3607 | static bool | |
3608 | nstat_control_reporting_allowed( | |
3609 | nstat_control_state *state, | |
3610 | nstat_src *src) | |
3611 | { | |
3612 | if (src->provider->nstat_reporting_allowed == NULL) | |
3613 | return TRUE; | |
3614 | ||
3615 | return ( | |
39037602 A |
3616 | src->provider->nstat_reporting_allowed(src->cookie, |
3617 | &state->ncs_provider_filters[src->provider->nstat_provider_id]) | |
3e170ce0 A |
3618 | ); |
3619 | } | |
3620 | ||
3621 | ||
6d2010ae A |
3622 | static errno_t |
3623 | nstat_control_connect( | |
3624 | kern_ctl_ref kctl, | |
3625 | struct sockaddr_ctl *sac, | |
3626 | void **uinfo) | |
3627 | { | |
3628 | nstat_control_state *state = OSMalloc(sizeof(*state), nstat_malloc_tag); | |
3629 | if (state == NULL) return ENOMEM; | |
39037602 | 3630 | |
6d2010ae A |
3631 | bzero(state, sizeof(*state)); |
3632 | lck_mtx_init(&state->mtx, nstat_lck_grp, NULL); | |
316670eb A |
3633 | state->ncs_kctl = kctl; |
3634 | state->ncs_unit = sac->sc_unit; | |
3635 | state->ncs_flags = NSTAT_FLAG_REQCOUNTS; | |
6d2010ae | 3636 | *uinfo = state; |
39037602 | 3637 | |
6d2010ae | 3638 | lck_mtx_lock(&nstat_mtx); |
316670eb | 3639 | state->ncs_next = nstat_controls; |
6d2010ae | 3640 | nstat_controls = state; |
39037602 | 3641 | |
316670eb | 3642 | if (nstat_idle_time == 0) |
6d2010ae A |
3643 | { |
3644 | clock_interval_to_deadline(60, NSEC_PER_SEC, &nstat_idle_time); | |
3645 | thread_call_func_delayed((thread_call_func_t)nstat_idle_check, NULL, nstat_idle_time); | |
3646 | } | |
39037602 | 3647 | |
6d2010ae | 3648 | lck_mtx_unlock(&nstat_mtx); |
39037602 | 3649 | |
6d2010ae A |
3650 | return 0; |
3651 | } | |
3652 | ||
3653 | static errno_t | |
3654 | nstat_control_disconnect( | |
3655 | __unused kern_ctl_ref kctl, | |
3656 | __unused u_int32_t unit, | |
3e170ce0 | 3657 | void *uinfo) |
6d2010ae A |
3658 | { |
3659 | u_int32_t watching; | |
3660 | nstat_control_state *state = (nstat_control_state*)uinfo; | |
39037602 | 3661 | |
6d2010ae A |
3662 | // pull it out of the global list of states |
3663 | lck_mtx_lock(&nstat_mtx); | |
3664 | nstat_control_state **statepp; | |
316670eb | 3665 | for (statepp = &nstat_controls; *statepp; statepp = &(*statepp)->ncs_next) |
6d2010ae A |
3666 | { |
3667 | if (*statepp == state) | |
3668 | { | |
316670eb | 3669 | *statepp = state->ncs_next; |
6d2010ae A |
3670 | break; |
3671 | } | |
3672 | } | |
3673 | lck_mtx_unlock(&nstat_mtx); | |
39037602 | 3674 | |
6d2010ae A |
3675 | lck_mtx_lock(&state->mtx); |
3676 | // Stop watching for sources | |
3677 | nstat_provider *provider; | |
316670eb A |
3678 | watching = state->ncs_watching; |
3679 | state->ncs_watching = 0; | |
6d2010ae A |
3680 | for (provider = nstat_providers; provider && watching; provider = provider->next) |
3681 | { | |
3682 | if ((watching & (1 << provider->nstat_provider_id)) != 0) | |
3683 | { | |
3684 | watching &= ~(1 << provider->nstat_provider_id); | |
3685 | provider->nstat_watcher_remove(state); | |
3686 | } | |
3687 | } | |
39037602 | 3688 | |
6d2010ae | 3689 | // set cleanup flags |
316670eb | 3690 | state->ncs_flags |= NSTAT_FLAG_CLEANUP; |
39037602 | 3691 | |
3e170ce0 A |
3692 | if (state->ncs_accumulated) |
3693 | { | |
3694 | mbuf_freem(state->ncs_accumulated); | |
3695 | state->ncs_accumulated = NULL; | |
3696 | } | |
39037602 | 3697 | |
6d2010ae | 3698 | // Copy out the list of sources |
316670eb A |
3699 | nstat_src *srcs = state->ncs_srcs; |
3700 | state->ncs_srcs = NULL; | |
6d2010ae | 3701 | lck_mtx_unlock(&state->mtx); |
39037602 | 3702 | |
6d2010ae A |
3703 | while (srcs) |
3704 | { | |
3705 | nstat_src *src; | |
39037602 | 3706 | |
6d2010ae A |
3707 | // pull it out of the list |
3708 | src = srcs; | |
3709 | srcs = src->next; | |
39037602 | 3710 | |
6d2010ae | 3711 | // clean it up |
316670eb | 3712 | nstat_control_cleanup_source(NULL, src, FALSE); |
6d2010ae | 3713 | } |
39236c6e | 3714 | lck_mtx_destroy(&state->mtx, nstat_lck_grp); |
6d2010ae | 3715 | OSFree(state, sizeof(*state), nstat_malloc_tag); |
39037602 | 3716 | |
6d2010ae A |
3717 | return 0; |
3718 | } | |
3719 | ||
3720 | static nstat_src_ref_t | |
3721 | nstat_control_next_src_ref( | |
3722 | nstat_control_state *state) | |
3723 | { | |
39037602 | 3724 | return ++state->ncs_next_srcref; |
6d2010ae A |
3725 | } |
3726 | ||
316670eb A |
3727 | static errno_t |
3728 | nstat_control_send_counts( | |
3729 | nstat_control_state *state, | |
3730 | nstat_src *src, | |
3731 | unsigned long long context, | |
3e170ce0 | 3732 | u_int16_t hdr_flags, |
316670eb | 3733 | int *gone) |
3e170ce0 | 3734 | { |
316670eb | 3735 | nstat_msg_src_counts counts; |
316670eb A |
3736 | errno_t result = 0; |
3737 | ||
fe8ab488 A |
3738 | /* Some providers may not have any counts to send */ |
3739 | if (src->provider->nstat_counts == NULL) | |
3740 | return (0); | |
3741 | ||
3742 | bzero(&counts, sizeof(counts)); | |
316670eb | 3743 | counts.hdr.type = NSTAT_MSG_TYPE_SRC_COUNTS; |
3e170ce0 A |
3744 | counts.hdr.length = sizeof(counts); |
3745 | counts.hdr.flags = hdr_flags; | |
316670eb A |
3746 | counts.hdr.context = context; |
3747 | counts.srcref = src->srcref; | |
39037602 A |
3748 | counts.event_flags = 0; |
3749 | ||
3e170ce0 A |
3750 | if (src->provider->nstat_counts(src->cookie, &counts.counts, gone) == 0) |
3751 | { | |
39236c6e | 3752 | if ((src->filter & NSTAT_FILTER_NOZEROBYTES) && |
39037602 | 3753 | counts.counts.nstat_rxbytes == 0 && |
3e170ce0 A |
3754 | counts.counts.nstat_txbytes == 0) |
3755 | { | |
39236c6e | 3756 | result = EAGAIN; |
3e170ce0 A |
3757 | } |
3758 | else | |
3759 | { | |
39236c6e A |
3760 | result = ctl_enqueuedata(state->ncs_kctl, |
3761 | state->ncs_unit, &counts, sizeof(counts), | |
3762 | CTL_DATA_EOR); | |
fe8ab488 | 3763 | if (result != 0) |
3e170ce0 | 3764 | nstat_stats.nstat_sendcountfailures += 1; |
fe8ab488 | 3765 | } |
316670eb | 3766 | } |
316670eb A |
3767 | return result; |
3768 | } | |
3769 | ||
3e170ce0 A |
3770 | static errno_t |
3771 | nstat_control_append_counts( | |
3772 | nstat_control_state *state, | |
3773 | nstat_src *src, | |
3774 | int *gone) | |
3775 | { | |
3776 | /* Some providers may not have any counts to send */ | |
3777 | if (!src->provider->nstat_counts) return 0; | |
39037602 | 3778 | |
3e170ce0 A |
3779 | nstat_msg_src_counts counts; |
3780 | bzero(&counts, sizeof(counts)); | |
3781 | counts.hdr.type = NSTAT_MSG_TYPE_SRC_COUNTS; | |
3782 | counts.hdr.length = sizeof(counts); | |
3783 | counts.srcref = src->srcref; | |
39037602 A |
3784 | counts.event_flags = 0; |
3785 | ||
3e170ce0 A |
3786 | errno_t result = 0; |
3787 | result = src->provider->nstat_counts(src->cookie, &counts.counts, gone); | |
3788 | if (result != 0) | |
3789 | { | |
3790 | return result; | |
3791 | } | |
39037602 | 3792 | |
3e170ce0 A |
3793 | if ((src->filter & NSTAT_FILTER_NOZEROBYTES) == NSTAT_FILTER_NOZEROBYTES && |
3794 | counts.counts.nstat_rxbytes == 0 && counts.counts.nstat_txbytes == 0) | |
3795 | { | |
3796 | return EAGAIN; | |
3797 | } | |
39037602 | 3798 | |
3e170ce0 A |
3799 | return nstat_accumulate_msg(state, &counts.hdr, counts.hdr.length); |
3800 | } | |
3801 | ||
6d2010ae A |
3802 | static int |
3803 | nstat_control_send_description( | |
3804 | nstat_control_state *state, | |
3805 | nstat_src *src, | |
3e170ce0 A |
3806 | u_int64_t context, |
3807 | u_int16_t hdr_flags) | |
6d2010ae A |
3808 | { |
3809 | // Provider doesn't support getting the descriptor? Done. | |
3810 | if (src->provider->nstat_descriptor_length == 0 || | |
3811 | src->provider->nstat_copy_descriptor == NULL) | |
3812 | { | |
6d2010ae A |
3813 | return EOPNOTSUPP; |
3814 | } | |
fe8ab488 | 3815 | |
6d2010ae A |
3816 | // Allocate storage for the descriptor message |
3817 | mbuf_t msg; | |
3818 | unsigned int one = 1; | |
3819 | u_int32_t size = offsetof(nstat_msg_src_description, data) + src->provider->nstat_descriptor_length; | |
fe8ab488 | 3820 | if (mbuf_allocpacket(MBUF_DONTWAIT, size, &one, &msg) != 0) |
6d2010ae | 3821 | { |
6d2010ae A |
3822 | return ENOMEM; |
3823 | } | |
fe8ab488 | 3824 | |
6d2010ae | 3825 | nstat_msg_src_description *desc = (nstat_msg_src_description*)mbuf_data(msg); |
fe8ab488 | 3826 | bzero(desc, size); |
6d2010ae A |
3827 | mbuf_setlen(msg, size); |
3828 | mbuf_pkthdr_setlen(msg, mbuf_len(msg)); | |
fe8ab488 | 3829 | |
6d2010ae A |
3830 | // Query the provider for the provider specific bits |
3831 | errno_t result = src->provider->nstat_copy_descriptor(src->cookie, desc->data, src->provider->nstat_descriptor_length); | |
fe8ab488 | 3832 | |
6d2010ae A |
3833 | if (result != 0) |
3834 | { | |
3835 | mbuf_freem(msg); | |
6d2010ae A |
3836 | return result; |
3837 | } | |
fe8ab488 | 3838 | |
6d2010ae A |
3839 | desc->hdr.context = context; |
3840 | desc->hdr.type = NSTAT_MSG_TYPE_SRC_DESC; | |
3e170ce0 A |
3841 | desc->hdr.length = size; |
3842 | desc->hdr.flags = hdr_flags; | |
6d2010ae | 3843 | desc->srcref = src->srcref; |
39037602 | 3844 | desc->event_flags = 0; |
6d2010ae | 3845 | desc->provider = src->provider->nstat_provider_id; |
fe8ab488 | 3846 | |
316670eb | 3847 | result = ctl_enqueuembuf(state->ncs_kctl, state->ncs_unit, msg, CTL_DATA_EOR); |
6d2010ae A |
3848 | if (result != 0) |
3849 | { | |
3e170ce0 | 3850 | nstat_stats.nstat_descriptionfailures += 1; |
6d2010ae A |
3851 | mbuf_freem(msg); |
3852 | } | |
fe8ab488 | 3853 | |
6d2010ae A |
3854 | return result; |
3855 | } | |
3856 | ||
3e170ce0 A |
3857 | static errno_t |
3858 | nstat_control_append_description( | |
3859 | nstat_control_state *state, | |
3860 | nstat_src *src) | |
3861 | { | |
3862 | size_t size = offsetof(nstat_msg_src_description, data) + src->provider->nstat_descriptor_length; | |
3863 | if (size > 512 || src->provider->nstat_descriptor_length == 0 || | |
3864 | src->provider->nstat_copy_descriptor == NULL) | |
3865 | { | |
3866 | return EOPNOTSUPP; | |
3867 | } | |
39037602 | 3868 | |
3e170ce0 A |
3869 | // Fill out a buffer on the stack, we will copy to the mbuf later |
3870 | u_int64_t buffer[size/sizeof(u_int64_t) + 1]; // u_int64_t to ensure alignment | |
3871 | bzero(buffer, size); | |
39037602 | 3872 | |
3e170ce0 A |
3873 | nstat_msg_src_description *desc = (nstat_msg_src_description*)buffer; |
3874 | desc->hdr.type = NSTAT_MSG_TYPE_SRC_DESC; | |
3875 | desc->hdr.length = size; | |
3876 | desc->srcref = src->srcref; | |
39037602 | 3877 | desc->event_flags = 0; |
3e170ce0 | 3878 | desc->provider = src->provider->nstat_provider_id; |
39037602 | 3879 | |
3e170ce0 A |
3880 | errno_t result = 0; |
3881 | // Fill in the description | |
3882 | // Query the provider for the provider specific bits | |
3883 | result = src->provider->nstat_copy_descriptor(src->cookie, desc->data, | |
3884 | src->provider->nstat_descriptor_length); | |
3885 | if (result != 0) | |
3886 | { | |
3887 | return result; | |
3888 | } | |
39037602 | 3889 | |
3e170ce0 A |
3890 | return nstat_accumulate_msg(state, &desc->hdr, size); |
3891 | } | |
3892 | ||
3893 | static int | |
3894 | nstat_control_send_update( | |
3895 | nstat_control_state *state, | |
3896 | nstat_src *src, | |
3897 | u_int64_t context, | |
3898 | u_int16_t hdr_flags, | |
3899 | int *gone) | |
3900 | { | |
3901 | // Provider doesn't support getting the descriptor or counts? Done. | |
3902 | if ((src->provider->nstat_descriptor_length == 0 || | |
3903 | src->provider->nstat_copy_descriptor == NULL) && | |
3904 | src->provider->nstat_counts == NULL) | |
3905 | { | |
3906 | return EOPNOTSUPP; | |
3907 | } | |
39037602 | 3908 | |
3e170ce0 A |
3909 | // Allocate storage for the descriptor message |
3910 | mbuf_t msg; | |
3911 | unsigned int one = 1; | |
3912 | u_int32_t size = offsetof(nstat_msg_src_update, data) + | |
3913 | src->provider->nstat_descriptor_length; | |
3914 | if (mbuf_allocpacket(MBUF_DONTWAIT, size, &one, &msg) != 0) | |
3915 | { | |
3916 | return ENOMEM; | |
3917 | } | |
39037602 | 3918 | |
3e170ce0 A |
3919 | nstat_msg_src_update *desc = (nstat_msg_src_update*)mbuf_data(msg); |
3920 | bzero(desc, size); | |
3921 | desc->hdr.context = context; | |
3922 | desc->hdr.type = NSTAT_MSG_TYPE_SRC_UPDATE; | |
3923 | desc->hdr.length = size; | |
3924 | desc->hdr.flags = hdr_flags; | |
3925 | desc->srcref = src->srcref; | |
39037602 | 3926 | desc->event_flags = 0; |
3e170ce0 | 3927 | desc->provider = src->provider->nstat_provider_id; |
39037602 | 3928 | |
3e170ce0 A |
3929 | mbuf_setlen(msg, size); |
3930 | mbuf_pkthdr_setlen(msg, mbuf_len(msg)); | |
39037602 | 3931 | |
3e170ce0 A |
3932 | errno_t result = 0; |
3933 | if (src->provider->nstat_descriptor_length != 0 && src->provider->nstat_copy_descriptor) | |
3934 | { | |
3935 | // Query the provider for the provider specific bits | |
3936 | result = src->provider->nstat_copy_descriptor(src->cookie, desc->data, | |
3937 | src->provider->nstat_descriptor_length); | |
3938 | if (result != 0) | |
3939 | { | |
3940 | mbuf_freem(msg); | |
3941 | return result; | |
3942 | } | |
3943 | } | |
39037602 | 3944 | |
3e170ce0 A |
3945 | if (src->provider->nstat_counts) |
3946 | { | |
3947 | result = src->provider->nstat_counts(src->cookie, &desc->counts, gone); | |
3948 | if (result == 0) | |
3949 | { | |
3950 | if ((src->filter & NSTAT_FILTER_NOZEROBYTES) == NSTAT_FILTER_NOZEROBYTES && | |
3951 | desc->counts.nstat_rxbytes == 0 && desc->counts.nstat_txbytes == 0) | |
3952 | { | |
3953 | result = EAGAIN; | |
3954 | } | |
3955 | else | |
3956 | { | |
3957 | result = ctl_enqueuembuf(state->ncs_kctl, state->ncs_unit, msg, CTL_DATA_EOR); | |
3958 | } | |
3959 | } | |
3960 | } | |
39037602 | 3961 | |
3e170ce0 A |
3962 | if (result != 0) |
3963 | { | |
3964 | nstat_stats.nstat_srcupatefailures += 1; | |
3965 | mbuf_freem(msg); | |
3966 | } | |
3967 | ||
3968 | return result; | |
3969 | } | |
3970 | ||
3971 | static errno_t | |
3972 | nstat_control_append_update( | |
3973 | nstat_control_state *state, | |
3974 | nstat_src *src, | |
3975 | int *gone) | |
3976 | { | |
3977 | size_t size = offsetof(nstat_msg_src_update, data) + src->provider->nstat_descriptor_length; | |
3978 | if (size > 512 || ((src->provider->nstat_descriptor_length == 0 || | |
3979 | src->provider->nstat_copy_descriptor == NULL) && | |
3980 | src->provider->nstat_counts == NULL)) | |
3981 | { | |
3982 | return EOPNOTSUPP; | |
3983 | } | |
39037602 | 3984 | |
3e170ce0 A |
3985 | // Fill out a buffer on the stack, we will copy to the mbuf later |
3986 | u_int64_t buffer[size/sizeof(u_int64_t) + 1]; // u_int64_t to ensure alignment | |
3987 | bzero(buffer, size); | |
39037602 | 3988 | |
3e170ce0 A |
3989 | nstat_msg_src_update *desc = (nstat_msg_src_update*)buffer; |
3990 | desc->hdr.type = NSTAT_MSG_TYPE_SRC_UPDATE; | |
3991 | desc->hdr.length = size; | |
3992 | desc->srcref = src->srcref; | |
39037602 | 3993 | desc->event_flags = 0; |
3e170ce0 | 3994 | desc->provider = src->provider->nstat_provider_id; |
39037602 | 3995 | |
3e170ce0 A |
3996 | errno_t result = 0; |
3997 | // Fill in the description | |
3998 | if (src->provider->nstat_descriptor_length != 0 && src->provider->nstat_copy_descriptor) | |
3999 | { | |
4000 | // Query the provider for the provider specific bits | |
4001 | result = src->provider->nstat_copy_descriptor(src->cookie, desc->data, | |
4002 | src->provider->nstat_descriptor_length); | |
4003 | if (result != 0) | |
4004 | { | |
4005 | nstat_stats.nstat_copy_descriptor_failures++; | |
4006 | if (nstat_debug != 0) | |
4007 | printf("%s: src->provider->nstat_copy_descriptor: %d\n", __func__, result); | |
4008 | return result; | |
4009 | } | |
4010 | } | |
39037602 | 4011 | |
3e170ce0 A |
4012 | if (src->provider->nstat_counts) |
4013 | { | |
4014 | result = src->provider->nstat_counts(src->cookie, &desc->counts, gone); | |
4015 | if (result != 0) | |
4016 | { | |
4017 | nstat_stats.nstat_provider_counts_failures++; | |
4018 | if (nstat_debug != 0) | |
4019 | printf("%s: src->provider->nstat_counts: %d\n", __func__, result); | |
4020 | return result; | |
4021 | } | |
39037602 | 4022 | |
3e170ce0 A |
4023 | if ((src->filter & NSTAT_FILTER_NOZEROBYTES) == NSTAT_FILTER_NOZEROBYTES && |
4024 | desc->counts.nstat_rxbytes == 0 && desc->counts.nstat_txbytes == 0) | |
4025 | { | |
4026 | return EAGAIN; | |
4027 | } | |
4028 | } | |
39037602 | 4029 | |
3e170ce0 A |
4030 | return nstat_accumulate_msg(state, &desc->hdr, size); |
4031 | } | |
4032 | ||
316670eb A |
4033 | static errno_t |
4034 | nstat_control_send_removed( | |
4035 | nstat_control_state *state, | |
4036 | nstat_src *src) | |
4037 | { | |
4038 | nstat_msg_src_removed removed; | |
4039 | errno_t result; | |
4040 | ||
fe8ab488 | 4041 | bzero(&removed, sizeof(removed)); |
316670eb | 4042 | removed.hdr.type = NSTAT_MSG_TYPE_SRC_REMOVED; |
3e170ce0 | 4043 | removed.hdr.length = sizeof(removed); |
316670eb A |
4044 | removed.hdr.context = 0; |
4045 | removed.srcref = src->srcref; | |
4046 | result = ctl_enqueuedata(state->ncs_kctl, state->ncs_unit, &removed, | |
fe8ab488 A |
4047 | sizeof(removed), CTL_DATA_EOR | CTL_DATA_CRIT); |
4048 | if (result != 0) | |
3e170ce0 | 4049 | nstat_stats.nstat_msgremovedfailures += 1; |
316670eb A |
4050 | |
4051 | return result; | |
4052 | } | |
4053 | ||
6d2010ae A |
4054 | static errno_t |
4055 | nstat_control_handle_add_request( | |
4056 | nstat_control_state *state, | |
4057 | mbuf_t m) | |
4058 | { | |
4059 | errno_t result; | |
39236c6e | 4060 | |
6d2010ae A |
4061 | // Verify the header fits in the first mbuf |
4062 | if (mbuf_len(m) < offsetof(nstat_msg_add_src_req, param)) | |
4063 | { | |
6d2010ae A |
4064 | return EINVAL; |
4065 | } | |
39037602 | 4066 | |
6d2010ae A |
4067 | // Calculate the length of the parameter field |
4068 | int32_t paramlength = mbuf_pkthdr_len(m) - offsetof(nstat_msg_add_src_req, param); | |
4069 | if (paramlength < 0 || paramlength > 2 * 1024) | |
4070 | { | |
6d2010ae A |
4071 | return EINVAL; |
4072 | } | |
39037602 | 4073 | |
6d2010ae A |
4074 | nstat_provider *provider; |
4075 | nstat_provider_cookie_t cookie; | |
4076 | nstat_msg_add_src_req *req = mbuf_data(m); | |
4077 | if (mbuf_pkthdr_len(m) > mbuf_len(m)) | |
4078 | { | |
4079 | // parameter is too large, we need to make a contiguous copy | |
4080 | void *data = OSMalloc(paramlength, nstat_malloc_tag); | |
39037602 | 4081 | |
6d2010ae A |
4082 | if (!data) return ENOMEM; |
4083 | result = mbuf_copydata(m, offsetof(nstat_msg_add_src_req, param), paramlength, data); | |
4084 | if (result == 0) | |
4085 | result = nstat_lookup_entry(req->provider, data, paramlength, &provider, &cookie); | |
4086 | OSFree(data, paramlength, nstat_malloc_tag); | |
4087 | } | |
4088 | else | |
4089 | { | |
4090 | result = nstat_lookup_entry(req->provider, (void*)&req->param, paramlength, &provider, &cookie); | |
4091 | } | |
39037602 | 4092 | |
6d2010ae A |
4093 | if (result != 0) |
4094 | { | |
6d2010ae A |
4095 | return result; |
4096 | } | |
39037602 | 4097 | |
6d2010ae A |
4098 | result = nstat_control_source_add(req->hdr.context, state, provider, cookie); |
4099 | if (result != 0) | |
316670eb | 4100 | provider->nstat_release(cookie, 0); |
39037602 | 4101 | |
6d2010ae A |
4102 | return result; |
4103 | } | |
4104 | ||
6d2010ae A |
4105 | static errno_t |
4106 | nstat_control_handle_add_all( | |
4107 | nstat_control_state *state, | |
4108 | mbuf_t m) | |
4109 | { | |
4110 | errno_t result = 0; | |
39037602 | 4111 | |
6d2010ae A |
4112 | // Verify the header fits in the first mbuf |
4113 | if (mbuf_len(m) < sizeof(nstat_msg_add_all_srcs)) | |
4114 | { | |
6d2010ae A |
4115 | return EINVAL; |
4116 | } | |
39037602 | 4117 | |
3e170ce0 | 4118 | |
6d2010ae | 4119 | nstat_msg_add_all_srcs *req = mbuf_data(m); |
3e170ce0 A |
4120 | if (req->provider > NSTAT_PROVIDER_LAST) return ENOENT; |
4121 | ||
6d2010ae | 4122 | nstat_provider *provider = nstat_find_provider_by_id(req->provider); |
3e170ce0 | 4123 | |
6d2010ae A |
4124 | if (!provider) return ENOENT; |
4125 | if (provider->nstat_watcher_add == NULL) return ENOTSUP; | |
39037602 | 4126 | |
39236c6e | 4127 | if (nstat_privcheck != 0) { |
39037602 | 4128 | result = priv_check_cred(kauth_cred_get(), |
39236c6e A |
4129 | PRIV_NET_PRIVILEGED_NETWORK_STATISTICS, 0); |
4130 | if (result != 0) | |
4131 | return result; | |
4132 | } | |
4133 | ||
6d2010ae A |
4134 | // Make sure we don't add the provider twice |
4135 | lck_mtx_lock(&state->mtx); | |
316670eb | 4136 | if ((state->ncs_watching & (1 << provider->nstat_provider_id)) != 0) |
6d2010ae | 4137 | result = EALREADY; |
316670eb | 4138 | state->ncs_watching |= (1 << provider->nstat_provider_id); |
6d2010ae A |
4139 | lck_mtx_unlock(&state->mtx); |
4140 | if (result != 0) return result; | |
39236c6e | 4141 | |
39037602 A |
4142 | state->ncs_provider_filters[req->provider].npf_flags = req->filter; |
4143 | state->ncs_provider_filters[req->provider].npf_events = req->events; | |
4144 | state->ncs_provider_filters[req->provider].npf_pid = req->target_pid; | |
4145 | memcpy(state->ncs_provider_filters[req->provider].npf_uuid, req->target_uuid, | |
4146 | sizeof(state->ncs_provider_filters[req->provider].npf_uuid)); | |
3e170ce0 | 4147 | |
6d2010ae A |
4148 | result = provider->nstat_watcher_add(state); |
4149 | if (result != 0) | |
4150 | { | |
39037602 A |
4151 | state->ncs_provider_filters[req->provider].npf_flags = 0; |
4152 | state->ncs_provider_filters[req->provider].npf_events = 0; | |
4153 | state->ncs_provider_filters[req->provider].npf_pid = 0; | |
4154 | bzero(state->ncs_provider_filters[req->provider].npf_uuid, | |
4155 | sizeof(state->ncs_provider_filters[req->provider].npf_uuid)); | |
4156 | ||
6d2010ae | 4157 | lck_mtx_lock(&state->mtx); |
316670eb | 4158 | state->ncs_watching &= ~(1 << provider->nstat_provider_id); |
6d2010ae A |
4159 | lck_mtx_unlock(&state->mtx); |
4160 | } | |
6d2010ae | 4161 | if (result == 0) |
3e170ce0 | 4162 | nstat_enqueue_success(req->hdr.context, state, 0); |
39037602 | 4163 | |
6d2010ae A |
4164 | return result; |
4165 | } | |
4166 | ||
4167 | static errno_t | |
4168 | nstat_control_source_add( | |
3e170ce0 | 4169 | u_int64_t context, |
6d2010ae A |
4170 | nstat_control_state *state, |
4171 | nstat_provider *provider, | |
3e170ce0 | 4172 | nstat_provider_cookie_t cookie) |
6d2010ae | 4173 | { |
3e170ce0 A |
4174 | // Fill out source added message if appropriate |
4175 | mbuf_t msg = NULL; | |
4176 | nstat_src_ref_t *srcrefp = NULL; | |
4177 | ||
39037602 A |
4178 | u_int64_t provider_filter_flagss = |
4179 | state->ncs_provider_filters[provider->nstat_provider_id].npf_flags; | |
3e170ce0 | 4180 | boolean_t tell_user = |
39037602 | 4181 | ((provider_filter_flagss & NSTAT_FILTER_SUPPRESS_SRC_ADDED) == 0); |
3e170ce0 | 4182 | u_int32_t src_filter = |
39037602 | 4183 | (provider_filter_flagss & NSTAT_FILTER_PROVIDER_NOZEROBYTES) |
3e170ce0 A |
4184 | ? NSTAT_FILTER_NOZEROBYTES : 0; |
4185 | ||
4186 | if (tell_user) | |
4187 | { | |
4188 | unsigned int one = 1; | |
39037602 | 4189 | |
3e170ce0 A |
4190 | if (mbuf_allocpacket(MBUF_DONTWAIT, sizeof(nstat_msg_src_added), |
4191 | &one, &msg) != 0) | |
4192 | return ENOMEM; | |
39037602 | 4193 | |
3e170ce0 A |
4194 | mbuf_setlen(msg, sizeof(nstat_msg_src_added)); |
4195 | mbuf_pkthdr_setlen(msg, mbuf_len(msg)); | |
4196 | nstat_msg_src_added *add = mbuf_data(msg); | |
4197 | bzero(add, sizeof(*add)); | |
4198 | add->hdr.type = NSTAT_MSG_TYPE_SRC_ADDED; | |
4199 | add->hdr.length = mbuf_len(msg); | |
4200 | add->hdr.context = context; | |
4201 | add->provider = provider->nstat_provider_id; | |
4202 | srcrefp = &add->srcref; | |
4203 | } | |
39037602 | 4204 | |
6d2010ae A |
4205 | // Allocate storage for the source |
4206 | nstat_src *src = OSMalloc(sizeof(*src), nstat_malloc_tag); | |
4207 | if (src == NULL) | |
4208 | { | |
3e170ce0 | 4209 | if (msg) mbuf_freem(msg); |
6d2010ae A |
4210 | return ENOMEM; |
4211 | } | |
39037602 | 4212 | |
6d2010ae A |
4213 | // Fill in the source, including picking an unused source ref |
4214 | lck_mtx_lock(&state->mtx); | |
3e170ce0 A |
4215 | |
4216 | src->srcref = nstat_control_next_src_ref(state); | |
4217 | if (srcrefp) | |
4218 | *srcrefp = src->srcref; | |
4219 | ||
316670eb | 4220 | if (state->ncs_flags & NSTAT_FLAG_CLEANUP || src->srcref == NSTAT_SRC_REF_INVALID) |
6d2010ae A |
4221 | { |
4222 | lck_mtx_unlock(&state->mtx); | |
4223 | OSFree(src, sizeof(*src), nstat_malloc_tag); | |
3e170ce0 | 4224 | if (msg) mbuf_freem(msg); |
6d2010ae A |
4225 | return EINVAL; |
4226 | } | |
4227 | src->provider = provider; | |
4228 | src->cookie = cookie; | |
3e170ce0 | 4229 | src->filter = src_filter; |
d190cdc3 | 4230 | src->seq = 0; |
3e170ce0 A |
4231 | |
4232 | if (msg) | |
6d2010ae | 4233 | { |
3e170ce0 A |
4234 | // send the source added message if appropriate |
4235 | errno_t result = ctl_enqueuembuf(state->ncs_kctl, state->ncs_unit, msg, | |
4236 | CTL_DATA_EOR); | |
4237 | if (result != 0) | |
4238 | { | |
4239 | nstat_stats.nstat_srcaddedfailures += 1; | |
4240 | lck_mtx_unlock(&state->mtx); | |
4241 | OSFree(src, sizeof(*src), nstat_malloc_tag); | |
4242 | mbuf_freem(msg); | |
4243 | return result; | |
4244 | } | |
6d2010ae | 4245 | } |
3e170ce0 | 4246 | // Put the source in the list |
316670eb A |
4247 | src->next = state->ncs_srcs; |
4248 | state->ncs_srcs = src; | |
39037602 | 4249 | |
6d2010ae | 4250 | lck_mtx_unlock(&state->mtx); |
39037602 | 4251 | |
6d2010ae A |
4252 | return 0; |
4253 | } | |
4254 | ||
4255 | static errno_t | |
4256 | nstat_control_handle_remove_request( | |
4257 | nstat_control_state *state, | |
4258 | mbuf_t m) | |
4259 | { | |
4260 | nstat_src_ref_t srcref = NSTAT_SRC_REF_INVALID; | |
39037602 | 4261 | |
6d2010ae A |
4262 | if (mbuf_copydata(m, offsetof(nstat_msg_rem_src_req, srcref), sizeof(srcref), &srcref) != 0) |
4263 | { | |
6d2010ae A |
4264 | return EINVAL; |
4265 | } | |
39037602 | 4266 | |
6d2010ae | 4267 | lck_mtx_lock(&state->mtx); |
39037602 | 4268 | |
6d2010ae A |
4269 | // Remove this source as we look for it |
4270 | nstat_src **nextp; | |
4271 | nstat_src *src = NULL; | |
316670eb | 4272 | for (nextp = &state->ncs_srcs; *nextp; nextp = &(*nextp)->next) |
6d2010ae A |
4273 | { |
4274 | if ((*nextp)->srcref == srcref) | |
4275 | { | |
4276 | src = *nextp; | |
4277 | *nextp = src->next; | |
4278 | break; | |
4279 | } | |
4280 | } | |
39037602 | 4281 | |
6d2010ae | 4282 | lck_mtx_unlock(&state->mtx); |
39037602 | 4283 | |
316670eb | 4284 | if (src) nstat_control_cleanup_source(state, src, FALSE); |
39037602 | 4285 | |
6d2010ae A |
4286 | return src ? 0 : ENOENT; |
4287 | } | |
4288 | ||
4289 | static errno_t | |
4290 | nstat_control_handle_query_request( | |
4291 | nstat_control_state *state, | |
4292 | mbuf_t m) | |
4293 | { | |
4294 | // TBD: handle this from another thread so we can enqueue a lot of data | |
39037602 | 4295 | // As written, if a client requests query all, this function will be |
6d2010ae A |
4296 | // called from their send of the request message. We will attempt to write |
4297 | // responses and succeed until the buffer fills up. Since the clients thread | |
4298 | // is blocked on send, it won't be reading unless the client has two threads | |
4299 | // using this socket, one for read and one for write. Two threads probably | |
4300 | // won't work with this code anyhow since we don't have proper locking in | |
4301 | // place yet. | |
4302 | nstat_src *dead_srcs = NULL; | |
4303 | errno_t result = ENOENT; | |
4304 | nstat_msg_query_src_req req; | |
fe8ab488 | 4305 | |
6d2010ae A |
4306 | if (mbuf_copydata(m, 0, sizeof(req), &req) != 0) |
4307 | { | |
6d2010ae A |
4308 | return EINVAL; |
4309 | } | |
3e170ce0 A |
4310 | |
4311 | const boolean_t all_srcs = (req.srcref == NSTAT_SRC_REF_ALL); | |
39037602 | 4312 | |
6d2010ae | 4313 | lck_mtx_lock(&state->mtx); |
3e170ce0 A |
4314 | |
4315 | if (all_srcs) | |
4316 | { | |
316670eb | 4317 | state->ncs_flags |= NSTAT_FLAG_REQCOUNTS; |
3e170ce0 | 4318 | } |
316670eb | 4319 | nstat_src **srcpp = &state->ncs_srcs; |
3e170ce0 A |
4320 | u_int64_t src_count = 0; |
4321 | boolean_t partial = FALSE; | |
4322 | ||
4323 | /* | |
4324 | * Error handling policy and sequence number generation is folded into | |
4325 | * nstat_control_begin_query. | |
4326 | */ | |
4327 | partial = nstat_control_begin_query(state, &req.hdr); | |
fe8ab488 | 4328 | |
3e170ce0 A |
4329 | while (*srcpp != NULL |
4330 | && (!partial || src_count < QUERY_CONTINUATION_SRC_COUNT)) | |
4331 | { | |
4332 | nstat_src *src = NULL; | |
4333 | int gone; | |
39037602 | 4334 | |
3e170ce0 | 4335 | src = *srcpp; |
6d2010ae | 4336 | gone = 0; |
39236c6e | 4337 | // XXX ignore IFACE types? |
3e170ce0 | 4338 | if (all_srcs || src->srcref == req.srcref) |
6d2010ae | 4339 | { |
3e170ce0 A |
4340 | if (nstat_control_reporting_allowed(state, src) |
4341 | && (!partial || !all_srcs || src->seq != state->ncs_seq)) | |
6d2010ae | 4342 | { |
3e170ce0 A |
4343 | if (all_srcs && |
4344 | (req.hdr.flags & NSTAT_MSG_HDR_FLAG_SUPPORTS_AGGREGATE) != 0) | |
4345 | { | |
4346 | result = nstat_control_append_counts(state, src, &gone); | |
4347 | } | |
4348 | else | |
4349 | { | |
4350 | result = nstat_control_send_counts(state, src, req.hdr.context, 0, &gone); | |
4351 | } | |
4352 | ||
4353 | if (ENOMEM == result || ENOBUFS == result) | |
4354 | { | |
4355 | /* | |
4356 | * If the counts message failed to | |
4357 | * enqueue then we should clear our flag so | |
4358 | * that a client doesn't miss anything on | |
4359 | * idle cleanup. We skip the "gone" | |
4360 | * processing in the hope that we may | |
4361 | * catch it another time. | |
4362 | */ | |
fe8ab488 A |
4363 | state->ncs_flags &= ~NSTAT_FLAG_REQCOUNTS; |
4364 | break; | |
3e170ce0 A |
4365 | } |
4366 | if (partial) | |
4367 | { | |
4368 | /* | |
4369 | * We skip over hard errors and | |
4370 | * filtered sources. | |
4371 | */ | |
4372 | src->seq = state->ncs_seq; | |
4373 | src_count++; | |
4374 | } | |
6d2010ae | 4375 | } |
6d2010ae | 4376 | } |
39037602 | 4377 | |
3e170ce0 A |
4378 | if (gone) |
4379 | { | |
4380 | // send one last descriptor message so client may see last state | |
4381 | // If we can't send the notification now, it | |
4382 | // will be sent in the idle cleanup. | |
4383 | result = nstat_control_send_description(state, *srcpp, 0, 0); | |
4384 | if (result != 0) | |
4385 | { | |
4386 | nstat_stats.nstat_control_send_description_failures++; | |
4387 | if (nstat_debug != 0) | |
4388 | printf("%s - nstat_control_send_description() %d\n", __func__, result); | |
4389 | state->ncs_flags &= ~NSTAT_FLAG_REQCOUNTS; | |
4390 | break; | |
4391 | } | |
39037602 | 4392 | |
3e170ce0 A |
4393 | // pull src out of the list |
4394 | *srcpp = src->next; | |
39037602 | 4395 | |
3e170ce0 A |
4396 | src->next = dead_srcs; |
4397 | dead_srcs = src; | |
4398 | } | |
4399 | else | |
4400 | { | |
6d2010ae | 4401 | srcpp = &(*srcpp)->next; |
3e170ce0 | 4402 | } |
39037602 | 4403 | |
3e170ce0 A |
4404 | if (!all_srcs && req.srcref == src->srcref) |
4405 | { | |
4406 | break; | |
4407 | } | |
6d2010ae | 4408 | } |
3e170ce0 A |
4409 | nstat_flush_accumulated_msgs(state); |
4410 | ||
4411 | u_int16_t flags = 0; | |
fe8ab488 | 4412 | if (req.srcref == NSTAT_SRC_REF_ALL) |
3e170ce0 A |
4413 | flags = nstat_control_end_query(state, *srcpp, partial); |
4414 | ||
4415 | lck_mtx_unlock(&state->mtx); | |
4416 | ||
4417 | /* | |
4418 | * If an error occurred enqueueing data, then allow the error to | |
4419 | * propagate to nstat_control_send. This way, the error is sent to | |
4420 | * user-level. | |
4421 | */ | |
4422 | if (all_srcs && ENOMEM != result && ENOBUFS != result) | |
fe8ab488 | 4423 | { |
3e170ce0 | 4424 | nstat_enqueue_success(req.hdr.context, state, flags); |
fe8ab488 A |
4425 | result = 0; |
4426 | } | |
39037602 | 4427 | |
6d2010ae A |
4428 | while (dead_srcs) |
4429 | { | |
4430 | nstat_src *src; | |
39037602 | 4431 | |
6d2010ae A |
4432 | src = dead_srcs; |
4433 | dead_srcs = src->next; | |
39037602 | 4434 | |
6d2010ae | 4435 | // release src and send notification |
316670eb | 4436 | nstat_control_cleanup_source(state, src, FALSE); |
6d2010ae | 4437 | } |
39037602 | 4438 | |
6d2010ae A |
4439 | return result; |
4440 | } | |
4441 | ||
4442 | static errno_t | |
4443 | nstat_control_handle_get_src_description( | |
4444 | nstat_control_state *state, | |
3e170ce0 | 4445 | mbuf_t m) |
6d2010ae A |
4446 | { |
4447 | nstat_msg_get_src_description req; | |
3e170ce0 | 4448 | errno_t result = ENOENT; |
39236c6e A |
4449 | nstat_src *src; |
4450 | ||
6d2010ae A |
4451 | if (mbuf_copydata(m, 0, sizeof(req), &req) != 0) |
4452 | { | |
6d2010ae A |
4453 | return EINVAL; |
4454 | } | |
3e170ce0 | 4455 | |
6d2010ae | 4456 | lck_mtx_lock(&state->mtx); |
3e170ce0 A |
4457 | u_int64_t src_count = 0; |
4458 | boolean_t partial = FALSE; | |
4459 | const boolean_t all_srcs = (req.srcref == NSTAT_SRC_REF_ALL); | |
4460 | ||
4461 | /* | |
4462 | * Error handling policy and sequence number generation is folded into | |
4463 | * nstat_control_begin_query. | |
4464 | */ | |
4465 | partial = nstat_control_begin_query(state, &req.hdr); | |
4466 | ||
4467 | for (src = state->ncs_srcs; | |
4468 | src && (!partial || src_count < QUERY_CONTINUATION_SRC_COUNT); | |
4469 | src = src->next) | |
4470 | { | |
4471 | if (all_srcs || src->srcref == req.srcref) | |
39236c6e | 4472 | { |
3e170ce0 A |
4473 | if (nstat_control_reporting_allowed(state, src) |
4474 | && (!all_srcs || !partial || src->seq != state->ncs_seq)) | |
4475 | { | |
4476 | if ((req.hdr.flags & NSTAT_MSG_HDR_FLAG_SUPPORTS_AGGREGATE) != 0 && all_srcs) | |
4477 | { | |
4478 | result = nstat_control_append_description(state, src); | |
4479 | } | |
4480 | else | |
4481 | { | |
4482 | result = nstat_control_send_description(state, src, req.hdr.context, 0); | |
4483 | } | |
4484 | ||
4485 | if (ENOMEM == result || ENOBUFS == result) | |
4486 | { | |
4487 | /* | |
4488 | * If the description message failed to | |
4489 | * enqueue then we give up for now. | |
4490 | */ | |
4491 | break; | |
4492 | } | |
4493 | if (partial) | |
4494 | { | |
4495 | /* | |
4496 | * Note, we skip over hard errors and | |
4497 | * filtered sources. | |
4498 | */ | |
4499 | src->seq = state->ncs_seq; | |
4500 | src_count++; | |
4501 | } | |
4502 | } | |
39037602 | 4503 | |
3e170ce0 A |
4504 | if (!all_srcs) |
4505 | { | |
39236c6e | 4506 | break; |
3e170ce0 | 4507 | } |
39236c6e | 4508 | } |
3e170ce0 A |
4509 | } |
4510 | nstat_flush_accumulated_msgs(state); | |
4511 | ||
4512 | u_int16_t flags = 0; | |
4513 | if (req.srcref == NSTAT_SRC_REF_ALL) | |
4514 | flags = nstat_control_end_query(state, src, partial); | |
4515 | ||
39236c6e | 4516 | lck_mtx_unlock(&state->mtx); |
3e170ce0 A |
4517 | /* |
4518 | * If an error occurred enqueueing data, then allow the error to | |
4519 | * propagate to nstat_control_send. This way, the error is sent to | |
4520 | * user-level. | |
4521 | */ | |
4522 | if (all_srcs && ENOMEM != result && ENOBUFS != result) | |
6d2010ae | 4523 | { |
3e170ce0 | 4524 | nstat_enqueue_success(req.hdr.context, state, flags); |
39236c6e | 4525 | result = 0; |
6d2010ae | 4526 | } |
39037602 | 4527 | |
6d2010ae A |
4528 | return result; |
4529 | } | |
4530 | ||
39236c6e A |
4531 | static errno_t |
4532 | nstat_control_handle_set_filter( | |
4533 | nstat_control_state *state, | |
4534 | mbuf_t m) | |
4535 | { | |
4536 | nstat_msg_set_filter req; | |
4537 | nstat_src *src; | |
4538 | ||
4539 | if (mbuf_copydata(m, 0, sizeof(req), &req) != 0) | |
4540 | return EINVAL; | |
4541 | if (req.srcref == NSTAT_SRC_REF_ALL || | |
4542 | req.srcref == NSTAT_SRC_REF_INVALID) | |
4543 | return EINVAL; | |
4544 | ||
4545 | lck_mtx_lock(&state->mtx); | |
4546 | for (src = state->ncs_srcs; src; src = src->next) | |
4547 | if (req.srcref == src->srcref) | |
4548 | { | |
4549 | src->filter = req.filter; | |
4550 | break; | |
4551 | } | |
4552 | lck_mtx_unlock(&state->mtx); | |
4553 | if (src == NULL) | |
4554 | return ENOENT; | |
4555 | ||
4556 | return 0; | |
3e170ce0 A |
4557 | } |
4558 | ||
4559 | static void | |
4560 | nstat_send_error( | |
4561 | nstat_control_state *state, | |
4562 | u_int64_t context, | |
4563 | u_int32_t error) | |
4564 | { | |
4565 | errno_t result; | |
4566 | struct nstat_msg_error err; | |
4567 | ||
4568 | bzero(&err, sizeof(err)); | |
4569 | err.hdr.type = NSTAT_MSG_TYPE_ERROR; | |
4570 | err.hdr.length = sizeof(err); | |
4571 | err.hdr.context = context; | |
4572 | err.error = error; | |
4573 | ||
4574 | result = ctl_enqueuedata(state->ncs_kctl, state->ncs_unit, &err, | |
4575 | sizeof(err), CTL_DATA_EOR | CTL_DATA_CRIT); | |
4576 | if (result != 0) | |
4577 | nstat_stats.nstat_msgerrorfailures++; | |
4578 | } | |
4579 | ||
4580 | static boolean_t | |
4581 | nstat_control_begin_query( | |
4582 | nstat_control_state *state, | |
4583 | const nstat_msg_hdr *hdrp) | |
4584 | { | |
4585 | boolean_t partial = FALSE; | |
4586 | ||
4587 | if (hdrp->flags & NSTAT_MSG_HDR_FLAG_CONTINUATION) | |
4588 | { | |
4589 | /* A partial query all has been requested. */ | |
4590 | partial = TRUE; | |
4591 | ||
4592 | if (state->ncs_context != hdrp->context) | |
4593 | { | |
4594 | if (state->ncs_context != 0) | |
4595 | nstat_send_error(state, state->ncs_context, EAGAIN); | |
4596 | ||
4597 | /* Initialize state for a partial query all. */ | |
4598 | state->ncs_context = hdrp->context; | |
4599 | state->ncs_seq++; | |
4600 | } | |
4601 | } | |
3e170ce0 A |
4602 | |
4603 | return partial; | |
4604 | } | |
4605 | ||
4606 | static u_int16_t | |
4607 | nstat_control_end_query( | |
4608 | nstat_control_state *state, | |
4609 | nstat_src *last_src, | |
4610 | boolean_t partial) | |
4611 | { | |
4612 | u_int16_t flags = 0; | |
4613 | ||
4614 | if (last_src == NULL || !partial) | |
4615 | { | |
4616 | /* | |
4617 | * We iterated through the entire srcs list or exited early | |
4618 | * from the loop when a partial update was not requested (an | |
4619 | * error occurred), so clear context to indicate internally | |
4620 | * that the query is finished. | |
4621 | */ | |
4622 | state->ncs_context = 0; | |
4623 | } | |
4624 | else | |
4625 | { | |
4626 | /* | |
4627 | * Indicate to userlevel to make another partial request as | |
4628 | * there are still sources left to be reported. | |
4629 | */ | |
4630 | flags |= NSTAT_MSG_HDR_FLAG_CONTINUATION; | |
4631 | } | |
4632 | ||
4633 | return flags; | |
4634 | } | |
4635 | ||
4636 | static errno_t | |
4637 | nstat_control_handle_get_update( | |
4638 | nstat_control_state *state, | |
4639 | mbuf_t m) | |
4640 | { | |
4641 | nstat_msg_query_src_req req; | |
4642 | ||
4643 | if (mbuf_copydata(m, 0, sizeof(req), &req) != 0) | |
4644 | { | |
4645 | return EINVAL; | |
4646 | } | |
4647 | ||
4648 | lck_mtx_lock(&state->mtx); | |
39037602 | 4649 | |
3e170ce0 A |
4650 | state->ncs_flags |= NSTAT_FLAG_SUPPORTS_UPDATES; |
4651 | ||
4652 | errno_t result = ENOENT; | |
4653 | nstat_src *src; | |
4654 | nstat_src *dead_srcs = NULL; | |
4655 | nstat_src **srcpp = &state->ncs_srcs; | |
4656 | u_int64_t src_count = 0; | |
4657 | boolean_t partial = FALSE; | |
4658 | ||
4659 | /* | |
4660 | * Error handling policy and sequence number generation is folded into | |
4661 | * nstat_control_begin_query. | |
4662 | */ | |
4663 | partial = nstat_control_begin_query(state, &req.hdr); | |
4664 | ||
4665 | while (*srcpp != NULL | |
4666 | && (FALSE == partial | |
4667 | || src_count < QUERY_CONTINUATION_SRC_COUNT)) | |
4668 | { | |
4669 | int gone; | |
39037602 | 4670 | |
3e170ce0 A |
4671 | gone = 0; |
4672 | src = *srcpp; | |
4673 | if (nstat_control_reporting_allowed(state, src)) | |
4674 | { | |
4675 | /* skip this source if it has the current state | |
4676 | * sequence number as it's already been reported in | |
4677 | * this query-all partial sequence. */ | |
4678 | if (req.srcref == NSTAT_SRC_REF_ALL | |
4679 | && (FALSE == partial || src->seq != state->ncs_seq)) | |
4680 | { | |
4681 | result = nstat_control_append_update(state, src, &gone); | |
4682 | if (ENOMEM == result || ENOBUFS == result) | |
4683 | { | |
4684 | /* | |
4685 | * If the update message failed to | |
4686 | * enqueue then give up. | |
4687 | */ | |
4688 | break; | |
4689 | } | |
4690 | if (partial) | |
4691 | { | |
4692 | /* | |
4693 | * We skip over hard errors and | |
4694 | * filtered sources. | |
4695 | */ | |
4696 | src->seq = state->ncs_seq; | |
4697 | src_count++; | |
4698 | } | |
4699 | } | |
4700 | else if (src->srcref == req.srcref) | |
4701 | { | |
4702 | result = nstat_control_send_update(state, src, req.hdr.context, 0, &gone); | |
4703 | } | |
4704 | } | |
39037602 | 4705 | |
3e170ce0 A |
4706 | if (gone) |
4707 | { | |
4708 | // pull src out of the list | |
4709 | *srcpp = src->next; | |
4710 | ||
4711 | src->next = dead_srcs; | |
4712 | dead_srcs = src; | |
4713 | } | |
4714 | else | |
4715 | { | |
4716 | srcpp = &(*srcpp)->next; | |
4717 | } | |
39037602 | 4718 | |
3e170ce0 A |
4719 | if (req.srcref != NSTAT_SRC_REF_ALL && req.srcref == src->srcref) |
4720 | { | |
4721 | break; | |
4722 | } | |
4723 | } | |
4724 | ||
4725 | nstat_flush_accumulated_msgs(state); | |
4726 | ||
4727 | ||
4728 | u_int16_t flags = 0; | |
4729 | if (req.srcref == NSTAT_SRC_REF_ALL) | |
4730 | flags = nstat_control_end_query(state, *srcpp, partial); | |
4731 | ||
4732 | lck_mtx_unlock(&state->mtx); | |
4733 | /* | |
4734 | * If an error occurred enqueueing data, then allow the error to | |
4735 | * propagate to nstat_control_send. This way, the error is sent to | |
4736 | * user-level. | |
4737 | */ | |
4738 | if (req.srcref == NSTAT_SRC_REF_ALL && ENOMEM != result && ENOBUFS != result) | |
4739 | { | |
4740 | nstat_enqueue_success(req.hdr.context, state, flags); | |
4741 | result = 0; | |
4742 | } | |
4743 | ||
4744 | while (dead_srcs) | |
4745 | { | |
4746 | src = dead_srcs; | |
4747 | dead_srcs = src->next; | |
39037602 | 4748 | |
3e170ce0 A |
4749 | // release src and send notification |
4750 | nstat_control_cleanup_source(state, src, FALSE); | |
4751 | } | |
39037602 | 4752 | |
3e170ce0 A |
4753 | return result; |
4754 | } | |
39236c6e | 4755 | |
3e170ce0 A |
4756 | static errno_t |
4757 | nstat_control_handle_subscribe_sysinfo( | |
4758 | nstat_control_state *state) | |
4759 | { | |
4760 | errno_t result = priv_check_cred(kauth_cred_get(), PRIV_NET_PRIVILEGED_NETWORK_STATISTICS, 0); | |
39037602 | 4761 | |
3e170ce0 A |
4762 | if (result != 0) |
4763 | { | |
4764 | return result; | |
4765 | } | |
39037602 | 4766 | |
3e170ce0 A |
4767 | lck_mtx_lock(&state->mtx); |
4768 | state->ncs_flags |= NSTAT_FLAG_SYSINFO_SUBSCRIBED; | |
4769 | lck_mtx_unlock(&state->mtx); | |
39037602 | 4770 | |
3e170ce0 | 4771 | return 0; |
39236c6e A |
4772 | } |
4773 | ||
6d2010ae A |
4774 | static errno_t |
4775 | nstat_control_send( | |
4776 | kern_ctl_ref kctl, | |
4777 | u_int32_t unit, | |
39236c6e | 4778 | void *uinfo, |
6d2010ae A |
4779 | mbuf_t m, |
4780 | __unused int flags) | |
4781 | { | |
4782 | nstat_control_state *state = (nstat_control_state*)uinfo; | |
4783 | struct nstat_msg_hdr *hdr; | |
4784 | struct nstat_msg_hdr storage; | |
4785 | errno_t result = 0; | |
39037602 | 4786 | |
3e170ce0 | 4787 | if (mbuf_pkthdr_len(m) < sizeof(*hdr)) |
6d2010ae A |
4788 | { |
4789 | // Is this the right thing to do? | |
6d2010ae A |
4790 | mbuf_freem(m); |
4791 | return EINVAL; | |
4792 | } | |
39037602 | 4793 | |
6d2010ae A |
4794 | if (mbuf_len(m) >= sizeof(*hdr)) |
4795 | { | |
4796 | hdr = mbuf_data(m); | |
4797 | } | |
4798 | else | |
4799 | { | |
4800 | mbuf_copydata(m, 0, sizeof(storage), &storage); | |
4801 | hdr = &storage; | |
4802 | } | |
39037602 | 4803 | |
3e170ce0 A |
4804 | // Legacy clients may not set the length |
4805 | // Those clients are likely not setting the flags either | |
4806 | // Fix everything up so old clients continue to work | |
4807 | if (hdr->length != mbuf_pkthdr_len(m)) | |
4808 | { | |
4809 | hdr->flags = 0; | |
4810 | hdr->length = mbuf_pkthdr_len(m); | |
4811 | if (hdr == &storage) | |
4812 | { | |
4813 | mbuf_copyback(m, 0, sizeof(*hdr), hdr, MBUF_DONTWAIT); | |
4814 | } | |
4815 | } | |
39037602 | 4816 | |
6d2010ae A |
4817 | switch (hdr->type) |
4818 | { | |
4819 | case NSTAT_MSG_TYPE_ADD_SRC: | |
4820 | result = nstat_control_handle_add_request(state, m); | |
4821 | break; | |
39037602 | 4822 | |
6d2010ae A |
4823 | case NSTAT_MSG_TYPE_ADD_ALL_SRCS: |
4824 | result = nstat_control_handle_add_all(state, m); | |
4825 | break; | |
39037602 | 4826 | |
6d2010ae A |
4827 | case NSTAT_MSG_TYPE_REM_SRC: |
4828 | result = nstat_control_handle_remove_request(state, m); | |
4829 | break; | |
39037602 | 4830 | |
6d2010ae A |
4831 | case NSTAT_MSG_TYPE_QUERY_SRC: |
4832 | result = nstat_control_handle_query_request(state, m); | |
4833 | break; | |
39037602 | 4834 | |
6d2010ae A |
4835 | case NSTAT_MSG_TYPE_GET_SRC_DESC: |
4836 | result = nstat_control_handle_get_src_description(state, m); | |
4837 | break; | |
39037602 | 4838 | |
39236c6e A |
4839 | case NSTAT_MSG_TYPE_SET_FILTER: |
4840 | result = nstat_control_handle_set_filter(state, m); | |
4841 | break; | |
39037602 | 4842 | |
3e170ce0 A |
4843 | case NSTAT_MSG_TYPE_GET_UPDATE: |
4844 | result = nstat_control_handle_get_update(state, m); | |
4845 | break; | |
39037602 | 4846 | |
3e170ce0 A |
4847 | case NSTAT_MSG_TYPE_SUBSCRIBE_SYSINFO: |
4848 | result = nstat_control_handle_subscribe_sysinfo(state); | |
4849 | break; | |
39037602 | 4850 | |
6d2010ae | 4851 | default: |
6d2010ae A |
4852 | result = EINVAL; |
4853 | break; | |
4854 | } | |
39037602 | 4855 | |
6d2010ae A |
4856 | if (result != 0) |
4857 | { | |
4858 | struct nstat_msg_error err; | |
39037602 | 4859 | |
fe8ab488 | 4860 | bzero(&err, sizeof(err)); |
6d2010ae | 4861 | err.hdr.type = NSTAT_MSG_TYPE_ERROR; |
3e170ce0 | 4862 | err.hdr.length = sizeof(err) + mbuf_pkthdr_len(m); |
6d2010ae A |
4863 | err.hdr.context = hdr->context; |
4864 | err.error = result; | |
39037602 | 4865 | |
3e170ce0 A |
4866 | if (mbuf_prepend(&m, sizeof(err), MBUF_DONTWAIT) == 0 && |
4867 | mbuf_copyback(m, 0, sizeof(err), &err, MBUF_DONTWAIT) == 0) | |
4868 | { | |
4869 | result = ctl_enqueuembuf(kctl, unit, m, CTL_DATA_EOR | CTL_DATA_CRIT); | |
4870 | if (result != 0) | |
4871 | { | |
4872 | mbuf_freem(m); | |
4873 | } | |
4874 | m = NULL; | |
4875 | } | |
39037602 | 4876 | |
fe8ab488 | 4877 | if (result != 0) |
3e170ce0 A |
4878 | { |
4879 | // Unable to prepend the error to the request - just send the error | |
4880 | err.hdr.length = sizeof(err); | |
4881 | result = ctl_enqueuedata(kctl, unit, &err, sizeof(err), | |
4882 | CTL_DATA_EOR | CTL_DATA_CRIT); | |
4883 | if (result != 0) | |
4884 | nstat_stats.nstat_msgerrorfailures += 1; | |
4885 | } | |
4886 | nstat_stats.nstat_handle_msg_failures += 1; | |
6d2010ae | 4887 | } |
39037602 | 4888 | |
3e170ce0 | 4889 | if (m) mbuf_freem(m); |
39037602 | 4890 | |
6d2010ae A |
4891 | return result; |
4892 | } |