]> git.saurik.com Git - apple/xnu.git/blob - osfmk/atm/atm.c
xnu-3248.60.10.tar.gz
[apple/xnu.git] / osfmk / atm / atm.c
1 /*
2 * Copyright (c) 2012-2013 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28
29 #include <atm/atm_internal.h>
30 #include <mach/mach_types.h>
31 #include <mach/kern_return.h>
32 #include <ipc/ipc_port.h>
33 #include <mach/mach_vm.h>
34 #include <mach/vm_map.h>
35 #include <vm/vm_map.h>
36 #include <atm/atm_notification.h>
37 #include <mach/host_priv.h>
38 #include <mach/host_special_ports.h>
39 #include <kern/host.h>
40 #include <kern/kalloc.h>
41 #include <machine/commpage.h>
42
43 #define MAX_ATM_VALUES (2 * 4096)
44 #define MAX_TRACE_BUFFER_SIZE (0x40000000) /* Restrict to 1GB per task */
45
46 #define ATM_VALUE_TO_HANDLE(x) (CAST_DOWN(atm_voucher_id_t, (x)))
47 #define HANDLE_TO_ATM_VALUE(x) (CAST_DOWN(atm_value_t, (x)))
48
49 #define ATM_MAX_HASH_TABLE_SIZE (256)
50 #define AID_HASH_MASK (0xFF)
51 #define AID_TO_HASH(x) ((x) & (AID_HASH_MASK))
52
53 #define ATM_LIST_DEAD_MAX 15
54
55 #define AID_ARRAY_COUNT_MAX (256)
56
57 struct atm_value_hash atm_value_hash_table[ATM_MAX_HASH_TABLE_SIZE];
58 extern int maxproc;
59
60 /* Global flag to disable ATM. ATM get value and memory registration will return error. */
61 boolean_t disable_atm = FALSE;
62
63 #if DEVELOPMENT || DEBUG
64 queue_head_t atm_descriptors_list;
65 queue_head_t atm_values_list;
66 #endif
67
68 ipc_voucher_attr_control_t voucher_attr_control; /* communication channel from ATM to voucher system */
69 static zone_t atm_value_zone, atm_descriptors_zone, atm_link_objects_zone;
70
71 static aid_t get_aid();
72 static mach_atm_subaid_t get_subaid();
73 static atm_value_t atm_value_alloc_init(aid_t);
74 static void atm_value_dealloc(atm_value_t atm_value);
75 static void atm_hash_table_init();
76 static kern_return_t atm_value_hash_table_insert(atm_value_t new_atm_value);
77 static void atm_value_hash_table_delete(atm_value_t atm_value);
78 static atm_value_t get_atm_value_from_aid(aid_t aid) __unused;
79 static void atm_value_get_ref(atm_value_t atm_value);
80 static kern_return_t atm_listener_insert(atm_value_t atm_value, atm_task_descriptor_t task_descriptor, atm_guard_t guard);
81 static void atm_listener_delete_all(atm_value_t atm_value);
82 static atm_task_descriptor_t atm_task_descriptor_alloc_init(mach_port_t trace_buffer,uint64_t buffer_size, __assert_only task_t task);
83 static void atm_descriptor_get_reference(atm_task_descriptor_t task_descriptor);
84 static void atm_task_descriptor_dealloc(atm_task_descriptor_t task_descriptor);
85 static kern_return_t atm_value_unregister(atm_value_t atm_value, atm_task_descriptor_t task_descriptor, atm_guard_t guard);
86 static kern_return_t atm_value_register(atm_value_t atm_value, atm_task_descriptor_t task_descriptor, atm_guard_t guard);
87 static kern_return_t atm_listener_delete(atm_value_t atm_value, atm_task_descriptor_t task_descriptor, atm_guard_t guard);
88 static void atm_link_get_reference(atm_link_object_t link_object) __unused;
89 static void atm_link_dealloc(atm_link_object_t link_object);
90 kern_return_t atm_invoke_collection(atm_value_t atm_value, mach_atm_subaid_t subaid, uint32_t flags);
91 kern_return_t atm_send_user_notification(aid_t aid, mach_atm_subaid_t sub_aid, mach_port_t *buffers_array, uint64_t *sizes_array, mach_msg_type_number_t count, uint32_t flags);
92
93 kern_return_t
94 atm_release_value(
95 ipc_voucher_attr_manager_t __assert_only manager,
96 mach_voucher_attr_key_t __assert_only key,
97 mach_voucher_attr_value_handle_t value,
98 mach_voucher_attr_value_reference_t sync);
99
100 kern_return_t
101 atm_get_value(
102 ipc_voucher_attr_manager_t __assert_only manager,
103 mach_voucher_attr_key_t __assert_only key,
104 mach_voucher_attr_recipe_command_t command,
105 mach_voucher_attr_value_handle_array_t prev_values,
106 mach_msg_type_number_t __assert_only prev_value_count,
107 mach_voucher_attr_content_t recipe,
108 mach_voucher_attr_content_size_t recipe_size,
109 mach_voucher_attr_value_handle_t *out_value,
110 mach_voucher_attr_value_flags_t *out_flags,
111 ipc_voucher_t *out_value_voucher);
112
113 kern_return_t
114 atm_extract_content(
115 ipc_voucher_attr_manager_t __assert_only manager,
116 mach_voucher_attr_key_t __assert_only key,
117 mach_voucher_attr_value_handle_array_t values,
118 mach_msg_type_number_t value_count,
119 mach_voucher_attr_recipe_command_t *out_command,
120 mach_voucher_attr_content_t out_recipe,
121 mach_voucher_attr_content_size_t *in_out_recipe_size);
122
123 kern_return_t
124 atm_command(
125 ipc_voucher_attr_manager_t __assert_only manager,
126 mach_voucher_attr_key_t __assert_only key,
127 mach_voucher_attr_value_handle_array_t values,
128 mach_msg_type_number_t value_count,
129 mach_voucher_attr_command_t command,
130 mach_voucher_attr_content_t in_content,
131 mach_voucher_attr_content_size_t in_content_size,
132 mach_voucher_attr_content_t out_content,
133 mach_voucher_attr_content_size_t *in_out_content_size);
134
135 void
136 atm_release(ipc_voucher_attr_manager_t __assert_only manager);
137
138 /*
139 * communication channel from voucher system to ATM
140 */
141 struct ipc_voucher_attr_manager atm_manager = {
142 .ivam_release_value = atm_release_value,
143 .ivam_get_value = atm_get_value,
144 .ivam_extract_content = atm_extract_content,
145 .ivam_command = atm_command,
146 .ivam_release = atm_release,
147 .ivam_flags = IVAM_FLAGS_NONE,
148 };
149
150 #if DEVELOPMENT || DEBUG
151 decl_lck_mtx_data(, atm_descriptors_list_lock);
152 decl_lck_mtx_data(, atm_values_list_lock);
153
154 lck_grp_t atm_dev_lock_grp;
155 lck_attr_t atm_dev_lock_attr;
156 lck_grp_attr_t atm_dev_lock_grp_attr;
157 #endif
158
159 extern vm_map_t kernel_map;
160 /*
161 * Global aid. Incremented on each get_aid.
162 */
163 aid_t global_aid;
164
165 /*
166 * Global subaid. Incremented on each get_subaid.
167 */
168 mach_atm_subaid_t global_subaid;
169
170 /*
171 * Lock group attributes for atm sub system.
172 */
173 lck_grp_t atm_lock_grp;
174 lck_attr_t atm_lock_attr;
175 lck_grp_attr_t atm_lock_grp_attr;
176
177 /*
178 * Global that is set by diagnosticd and readable by userspace
179 * via the commpage.
180 */
181 static uint32_t atm_diagnostic_config;
182
183 /*
184 * Routine: atm_init
185 * Purpose: Initialize the atm subsystem.
186 * Returns: None.
187 */
188 void
189 atm_init()
190 {
191 kern_return_t kr = KERN_SUCCESS;
192 char temp_buf[20];
193
194 /* Disable atm if disable_atm present in device-tree properties or in boot-args */
195 if ((PE_get_default("kern.disable_atm", temp_buf, sizeof(temp_buf))) ||
196 (PE_parse_boot_argn("-disable_atm", temp_buf, sizeof(temp_buf)))) {
197 disable_atm = TRUE;
198 }
199
200 if (!PE_parse_boot_argn("atm_diagnostic_config", &atm_diagnostic_config, sizeof(atm_diagnostic_config))) {
201 if (!PE_get_default("kern.atm_diagnostic_config", &atm_diagnostic_config, sizeof(atm_diagnostic_config))) {
202 atm_diagnostic_config = 0;
203 }
204 }
205
206 /* setup zones for descriptors, values and link objects */
207 atm_value_zone = zinit(sizeof(struct atm_value),
208 MAX_ATM_VALUES * sizeof(struct atm_value),
209 sizeof(struct atm_value),
210 "atm_values");
211
212 atm_descriptors_zone = zinit(sizeof(struct atm_task_descriptor),
213 MAX_ATM_VALUES * sizeof(struct atm_task_descriptor),
214 sizeof(struct atm_task_descriptor),
215 "atm_task_descriptors");
216
217 atm_link_objects_zone = zinit(sizeof(struct atm_link_object),
218 MAX_ATM_VALUES * sizeof(struct atm_link_object),
219 sizeof(struct atm_link_object),
220 "atm_link_objects");
221
222 /* Initialize atm lock group and lock attributes. */
223 lck_grp_attr_setdefault(&atm_lock_grp_attr);
224 lck_grp_init(&atm_lock_grp, "atm_lock", &atm_lock_grp_attr);
225 lck_attr_setdefault(&atm_lock_attr);
226
227 global_aid = 1;
228 global_subaid = 1;
229 atm_hash_table_init();
230
231 #if DEVELOPMENT || DEBUG
232 /* Initialize global atm development lock group and lock attributes. */
233 lck_grp_attr_setdefault(&atm_dev_lock_grp_attr);
234 lck_grp_init(&atm_dev_lock_grp, "atm_dev_lock", &atm_dev_lock_grp_attr);
235 lck_attr_setdefault(&atm_dev_lock_attr);
236
237 lck_mtx_init(&atm_descriptors_list_lock, &atm_dev_lock_grp, &atm_dev_lock_attr);
238 lck_mtx_init(&atm_values_list_lock, &atm_dev_lock_grp, &atm_dev_lock_attr);
239
240 queue_init(&atm_descriptors_list);
241 queue_init(&atm_values_list);
242 #endif
243
244 /* Register the atm manager with the Vouchers sub system. */
245 kr = ipc_register_well_known_mach_voucher_attr_manager(
246 &atm_manager,
247 0,
248 MACH_VOUCHER_ATTR_KEY_ATM,
249 &voucher_attr_control);
250 if (kr != KERN_SUCCESS )
251 panic("ATM subsystem initialization failed");
252
253 kprintf("ATM subsystem is initialized\n");
254 return ;
255 }
256
257
258 /*
259 * ATM Resource Manager Routines.
260 */
261
262
263 /*
264 * Routine: atm_release_value
265 * Purpose: Release a value, if sync matches the sync count in value.
266 * Returns: KERN_SUCCESS: on Successful deletion.
267 * KERN_FAILURE: if sync value does not matches.
268 */
269 kern_return_t
270 atm_release_value(
271 ipc_voucher_attr_manager_t __assert_only manager,
272 mach_voucher_attr_key_t __assert_only key,
273 mach_voucher_attr_value_handle_t value,
274 mach_voucher_attr_value_reference_t sync)
275 {
276 atm_value_t atm_value = ATM_VALUE_NULL;
277
278 assert(MACH_VOUCHER_ATTR_KEY_ATM == key);
279 assert(manager == &atm_manager);
280
281 atm_value = HANDLE_TO_ATM_VALUE(value);
282 if (atm_value == VAM_DEFAULT_VALUE) {
283 /* Return success for default value */
284 return KERN_SUCCESS;
285 }
286
287 if (atm_value->sync != sync) {
288 return KERN_FAILURE;
289 }
290
291 /* Deallocate the atm value. */
292 atm_value_hash_table_delete(atm_value);
293 atm_value_dealloc(atm_value);
294 return KERN_SUCCESS;
295 }
296
297
298 /*
299 * Routine: atm_get_value
300 */
301 kern_return_t
302 atm_get_value(
303 ipc_voucher_attr_manager_t __assert_only manager,
304 mach_voucher_attr_key_t __assert_only key,
305 mach_voucher_attr_recipe_command_t command,
306 mach_voucher_attr_value_handle_array_t prev_values,
307 mach_msg_type_number_t __assert_only prev_value_count,
308 mach_voucher_attr_content_t __unused recipe,
309 mach_voucher_attr_content_size_t __unused recipe_size,
310 mach_voucher_attr_value_handle_t *out_value,
311 mach_voucher_attr_value_flags_t *out_flags,
312 ipc_voucher_t *out_value_voucher)
313 {
314 atm_value_t atm_value = ATM_VALUE_NULL;
315 mach_voucher_attr_value_handle_t atm_handle;
316 atm_task_descriptor_t task_descriptor = ATM_TASK_DESCRIPTOR_NULL;
317 task_t task;
318 aid_t aid;
319 atm_guard_t guard;
320 natural_t i;
321 kern_return_t kr = KERN_SUCCESS;
322
323 assert(MACH_VOUCHER_ATTR_KEY_ATM == key);
324 assert(manager == &atm_manager);
325
326 /* never an out voucher */
327 *out_value_voucher = IPC_VOUCHER_NULL;
328 *out_flags = MACH_VOUCHER_ATTR_VALUE_FLAGS_NONE;
329
330 if (disable_atm || (atm_get_diagnostic_config() & ATM_TRACE_DISABLE))
331 return KERN_NOT_SUPPORTED;
332
333 switch (command) {
334
335 case MACH_VOUCHER_ATTR_ATM_REGISTER:
336
337 for (i = 0; i < prev_value_count; i++) {
338 atm_handle = prev_values[i];
339 atm_value = HANDLE_TO_ATM_VALUE(atm_handle);
340
341 if (atm_value == VAM_DEFAULT_VALUE)
342 continue;
343
344 if (recipe_size != sizeof(atm_guard_t)) {
345 kr = KERN_INVALID_ARGUMENT;
346 break;
347 }
348 memcpy(&guard, recipe, sizeof(atm_guard_t));
349
350 task = current_task();
351 task_descriptor = task->atm_context;
352
353 kr = atm_value_register(atm_value, task_descriptor, guard);
354 if (kr != KERN_SUCCESS) {
355 break;
356 }
357
358 /* Increment sync value. */
359 atm_sync_reference_internal(atm_value);
360
361 *out_value = atm_handle;
362 return kr;
363 }
364
365 *out_value = ATM_VALUE_TO_HANDLE(VAM_DEFAULT_VALUE);
366 break;
367
368 case MACH_VOUCHER_ATTR_ATM_CREATE:
369
370 /* Handle the old case where aid value is created in kernel */
371 if (recipe_size == 0) {
372 aid = get_aid();
373 } else if (recipe_size == sizeof(aid_t)) {
374 memcpy(&aid, recipe, sizeof(aid_t));
375 } else {
376 kr = KERN_INVALID_ARGUMENT;
377 break;
378 }
379
380 /* Allocate a new atm value. */
381 atm_value = atm_value_alloc_init(aid);
382 if (atm_value == ATM_VALUE_NULL) {
383 kr = KERN_RESOURCE_SHORTAGE;
384 break;
385 }
386 redrive:
387 kr = atm_value_hash_table_insert(atm_value);
388 if (kr != KERN_SUCCESS) {
389 if (recipe_size == 0) {
390 atm_value->aid = get_aid();
391 goto redrive;
392 }
393 atm_value_dealloc(atm_value);
394 break;
395 }
396
397 *out_value = ATM_VALUE_TO_HANDLE(atm_value);
398 break;
399
400 case MACH_VOUCHER_ATTR_ATM_NULL:
401 default:
402 kr = KERN_INVALID_ARGUMENT;
403 break;
404 }
405
406 return kr;
407 }
408
409
410 /*
411 * Routine: atm_extract_content
412 * Purpose: Extract a set of aid from an array of voucher values.
413 * Returns: KERN_SUCCESS: on Success.
414 * KERN_FAILURE: one of the value is not present in the hash.
415 * KERN_NO_SPACE: insufficeint buffer provided to fill an array of aid.
416 */
417 kern_return_t
418 atm_extract_content(
419 ipc_voucher_attr_manager_t __assert_only manager,
420 mach_voucher_attr_key_t __assert_only key,
421 mach_voucher_attr_value_handle_array_t values,
422 mach_msg_type_number_t value_count,
423 mach_voucher_attr_recipe_command_t *out_command,
424 mach_voucher_attr_content_t out_recipe,
425 mach_voucher_attr_content_size_t *in_out_recipe_size)
426 {
427 atm_value_t atm_value;
428 mach_voucher_attr_value_handle_t atm_handle;
429 natural_t i;
430
431 assert(MACH_VOUCHER_ATTR_KEY_ATM == key);
432 assert(manager == &atm_manager);
433
434 for (i = 0; i < value_count; i++) {
435 atm_handle = values[i];
436 atm_value = HANDLE_TO_ATM_VALUE(atm_handle);
437 if (atm_value == VAM_DEFAULT_VALUE)
438 continue;
439
440 if (( sizeof(aid_t)) > *in_out_recipe_size) {
441 *in_out_recipe_size = 0;
442 return KERN_NO_SPACE;
443 }
444
445 memcpy(&out_recipe[0], &atm_value->aid, sizeof(aid_t));
446 *out_command = MACH_VOUCHER_ATTR_ATM_NULL;
447 *in_out_recipe_size = sizeof(aid_t);
448 return KERN_SUCCESS;
449 }
450
451 *in_out_recipe_size = 0;
452 return KERN_SUCCESS;
453 }
454
455 /*
456 * Routine: atm_command
457 * Purpose: Execute a command against a set of ATM values.
458 * Returns: KERN_SUCCESS: On successful execution of command.
459 KERN_FAILURE: On failure.
460 */
461 kern_return_t
462 atm_command(
463 ipc_voucher_attr_manager_t __assert_only manager,
464 mach_voucher_attr_key_t __assert_only key,
465 mach_voucher_attr_value_handle_array_t values,
466 mach_msg_type_number_t value_count,
467 mach_voucher_attr_command_t command,
468 mach_voucher_attr_content_t in_content,
469 mach_voucher_attr_content_size_t in_content_size,
470 mach_voucher_attr_content_t out_content,
471 mach_voucher_attr_content_size_t *out_content_size)
472 {
473 assert(MACH_VOUCHER_ATTR_KEY_ATM == key);
474 assert(manager == &atm_manager);
475 atm_value_t atm_value = ATM_VALUE_NULL;
476 natural_t i = 0;
477 mach_atm_subaid_t *subaid_array = NULL;
478 mach_atm_subaid_t next_subaid = 0;
479 uint32_t aid_array_count = 0;
480 atm_task_descriptor_t task_descriptor = ATM_TASK_DESCRIPTOR_NULL;
481 task_t task;
482 uint32_t collection_flags = ATM_ACTION_LOGFAIL;
483 kern_return_t kr = KERN_SUCCESS;
484 atm_guard_t guard;
485
486 switch (command) {
487 case ATM_ACTION_COLLECT:
488 collection_flags = ATM_ACTION_COLLECT;
489 /* Fall through */
490
491 case ATM_ACTION_LOGFAIL: {
492 mach_atm_subaid_t sub_aid = 0;
493
494 if (disable_atm || (atm_get_diagnostic_config() & ATM_TRACE_DISABLE))
495 return KERN_NOT_SUPPORTED;
496
497 /* find the first non-default atm_value */
498 for (i = 0; i < value_count; i++) {
499 atm_value = HANDLE_TO_ATM_VALUE(values[i]);
500 if (atm_value != VAM_DEFAULT_VALUE)
501 break;
502 }
503
504 /* if we are not able to find any atm values
505 * in stack then this call was made in error
506 */
507 if (atm_value == NULL) {
508 return KERN_FAILURE;
509 }
510
511 if (in_content_size >= sizeof(mach_atm_subaid_t)) {
512 sub_aid = *(mach_atm_subaid_t *)(void *)in_content;
513 }
514
515 *out_content_size = 0;
516 kr = atm_invoke_collection(atm_value, sub_aid, collection_flags);
517 break;
518 }
519
520 case ATM_FIND_MIN_SUB_AID:
521 if ((in_content_size/sizeof(aid_t)) > (*out_content_size/sizeof(mach_atm_subaid_t)))
522 return KERN_FAILURE;
523
524 aid_array_count = in_content_size / sizeof(aid_t);
525 if (aid_array_count > AID_ARRAY_COUNT_MAX)
526 return KERN_FAILURE;
527
528 subaid_array = (mach_atm_subaid_t *) (void *) out_content;
529 for (i = 0; i < aid_array_count; i++) {
530 subaid_array[i] = ATM_SUBAID32_MAX;
531 }
532
533 *out_content_size = aid_array_count * sizeof(mach_atm_subaid_t);
534
535 kr = KERN_SUCCESS;
536
537 break;
538
539 case ATM_ACTION_UNREGISTER:
540 /* find the first non-default atm_value */
541 for (i = 0; i < value_count; i++) {
542 atm_value = HANDLE_TO_ATM_VALUE(values[i]);
543 if (atm_value != VAM_DEFAULT_VALUE)
544 break;
545 }
546
547 /* if we are not able to find any atm values
548 * in stack then this call was made in error
549 */
550 if (atm_value == NULL) {
551 return KERN_FAILURE;
552 }
553 if (in_content == NULL || in_content_size != sizeof(atm_guard_t)){
554 return KERN_INVALID_ARGUMENT;
555 }
556
557 memcpy(&guard, in_content, sizeof(atm_guard_t));
558 task = current_task();
559 task_descriptor = task->atm_context;
560
561 kr = atm_value_unregister(atm_value, task_descriptor, guard);
562
563 break;
564
565 case ATM_ACTION_REGISTER:
566 for (i = 0; i < value_count; i++) {
567 atm_value = HANDLE_TO_ATM_VALUE(values[i]);
568 if (atm_value != VAM_DEFAULT_VALUE)
569 break;
570 }
571 /* if we are not able to find any atm values
572 * in stack then this call was made in error
573 */
574 if (atm_value == NULL) {
575 return KERN_FAILURE;
576 }
577 if (in_content == NULL || in_content_size != sizeof(atm_guard_t)){
578 return KERN_INVALID_ARGUMENT;
579 }
580
581 memcpy(&guard, in_content, sizeof(atm_guard_t));
582 task = current_task();
583 task_descriptor = task->atm_context;
584
585 kr = atm_value_register(atm_value, task_descriptor, guard);
586
587 break;
588
589 case ATM_ACTION_GETSUBAID:
590 if (out_content == NULL || *out_content_size != sizeof(mach_atm_subaid_t))
591 return KERN_FAILURE;
592
593 next_subaid = get_subaid();
594 memcpy(out_content, &next_subaid, sizeof(mach_atm_subaid_t));
595 break;
596
597 default:
598 kr = KERN_INVALID_ARGUMENT;
599 break;
600 }
601
602 return kr;
603 }
604
605
606 void
607 atm_release(
608 ipc_voucher_attr_manager_t __assert_only manager)
609 {
610 assert(manager == &atm_manager);
611 }
612
613
614 /*
615 * Routine: atm_invoke_collection
616 * Purpose: Sends a notification with array of memory buffer.
617 * Note: may block till user daemon responds.
618 */
619 kern_return_t
620 atm_invoke_collection(
621 atm_value_t atm_value,
622 mach_atm_subaid_t sub_aid,
623 uint32_t flags)
624 {
625 aid_t aid = atm_value->aid;
626 kern_return_t kr = KERN_SUCCESS;
627 uint32_t array_count = 0, i = 0, j = 0, requestor_index = 0;
628 uint64_t *sizes_array = NULL;
629 atm_link_object_t link_object = NULL;
630 mach_port_t *mem_array = NULL;
631 boolean_t need_swap_first = FALSE;
632 atm_task_descriptor_t requesting_descriptor = current_task()->atm_context;
633
634 lck_mtx_lock(&atm_value->listener_lock);
635 array_count = atm_value->listener_count;
636 lck_mtx_unlock(&atm_value->listener_lock);
637
638 if (array_count == 0){
639 return KERN_SUCCESS;
640 }
641
642 mem_array = kalloc(sizeof(mach_port_t) * array_count);
643 if (mem_array == NULL){
644 return KERN_NO_SPACE;
645 }
646
647 sizes_array = kalloc(sizeof(uint64_t) * array_count);
648 if (sizes_array == NULL){
649 kfree(mem_array, sizeof(mach_port_t) * array_count);
650 return KERN_NO_SPACE;
651 }
652
653 lck_mtx_lock(&atm_value->listener_lock);
654 queue_iterate(&atm_value->listeners, link_object, atm_link_object_t, listeners_element) {
655 if (i >= array_count){
656 break;
657 }
658
659 if (!need_swap_first && requesting_descriptor == link_object->descriptor){
660 assert(requesting_descriptor != NULL);
661 requestor_index = i;
662 need_swap_first = TRUE;
663 }
664
665 sizes_array[i] = link_object->descriptor->trace_buffer_size;
666 mem_array[i] = ipc_port_copy_send(link_object->descriptor->trace_buffer);
667 if (!IPC_PORT_VALID(mem_array[i])){
668 mem_array[i] = NULL;
669 }
670 i++;
671 }
672 lck_mtx_unlock(&atm_value->listener_lock);
673
674 /*
675 * Swap the position of requesting task ahead, diagnostics can
676 * process its buffers the first.
677 */
678 if (need_swap_first && requestor_index != 0){
679 assert(requestor_index < array_count);
680 mach_port_t tmp_port = mem_array[0];
681 uint64_t tmp_size = sizes_array[0];
682 mem_array[0] = mem_array[requestor_index];
683 sizes_array[0] = sizes_array[requestor_index];
684 mem_array[requestor_index] = tmp_port;
685 sizes_array[requestor_index] = tmp_size;
686 }
687
688 if (i > 0) {
689 kr = atm_send_user_notification(aid, sub_aid, mem_array, sizes_array, i, flags);
690 }
691
692 for (j = 0; j < i; j++) {
693 if (mem_array[j] != NULL)
694 ipc_port_release_send(mem_array[j]);
695 }
696
697 kfree(mem_array, sizeof(mach_port_t) * array_count);
698 kfree(sizes_array, sizeof(uint64_t) * array_count);
699
700 return kr;
701 }
702
703 /*
704 * Routine: atm_send_user_notification
705 * Purpose: Make an upcall to user space daemon if its listening for atm notifications.
706 * Returns: KERN_SUCCESS for successful delivery.
707 * KERN_FAILURE if port is dead or NULL.
708 */
709 kern_return_t
710 atm_send_user_notification(
711 aid_t aid,
712 mach_atm_subaid_t sub_aid,
713 mach_port_t *buffers_array,
714 uint64_t *sizes_array,
715 mach_msg_type_number_t count,
716 uint32_t flags)
717 {
718 mach_port_t user_port;
719 int error;
720 thread_t th = current_thread();
721 kern_return_t kr;
722
723 error = host_get_atm_notification_port(host_priv_self(), &user_port);
724 if ((error != KERN_SUCCESS) || !IPC_PORT_VALID(user_port)) {
725 return KERN_FAILURE;
726 }
727
728 /* Set the honor queue limit option on the thread. */
729 th->options |= TH_OPT_HONOR_QLIMIT;
730 kr = atm_collect_trace_info(user_port, aid, sub_aid, flags, buffers_array, count, sizes_array, count);
731 /* Make sure that honor queue limit option is unset on the thread. */
732 th->options &= (~TH_OPT_HONOR_QLIMIT);
733
734 if (kr == MACH_SEND_TIMED_OUT) {
735 kr = KERN_SUCCESS;
736 }
737 return kr;
738 }
739
740 /*
741 * Routine: atm_send_proc_inspect_notification
742 * Purpose: Make an upcall to user space daemon if its listening for trace
743 * notifications for per process inspection.
744 * Returns: KERN_SUCCESS for successful delivery.
745 * KERN_FAILURE if port is dead or NULL.
746 */
747
748 kern_return_t
749 atm_send_proc_inspect_notification(
750 task_t task,
751 int32_t traced_pid,
752 uint64_t traced_uniqueid)
753 {
754 mach_port_t user_port = MACH_PORT_NULL;
755 mach_port_t memory_port = MACH_PORT_NULL;
756 kern_return_t kr;
757 atm_task_descriptor_t task_descriptor = ATM_TASK_DESCRIPTOR_NULL;
758 uint64_t buffer_size = 0;
759 int error;
760 thread_t th = current_thread();
761
762 if (disable_atm || (atm_get_diagnostic_config() & ATM_TRACE_DISABLE))
763 return KERN_NOT_SUPPORTED;
764
765 /* look for the requested memory in target task */
766 if (!task)
767 return KERN_INVALID_TASK;
768
769 task_lock(task);
770 if (task->atm_context){
771 task_descriptor = task->atm_context;
772 atm_descriptor_get_reference(task_descriptor);
773 }
774 task_unlock(task);
775
776 if (task_descriptor == ATM_TASK_DESCRIPTOR_NULL){
777 return KERN_FAILURE;
778 }
779
780 memory_port = ipc_port_copy_send(task_descriptor->trace_buffer);
781 buffer_size = task_descriptor->trace_buffer_size;
782 atm_task_descriptor_dealloc(task_descriptor);
783
784 /* get the communication port */
785 error = host_get_atm_notification_port(host_priv_self(), &user_port);
786 if ((error != KERN_SUCCESS) || !IPC_PORT_VALID(user_port)) {
787 ipc_port_release_send(memory_port);
788 return KERN_FAILURE;
789 }
790
791 /* Set the honor queue limit option on the thread. */
792 th->options |= TH_OPT_HONOR_QLIMIT;
793 kr = atm_inspect_process_buffer(user_port, traced_pid, traced_uniqueid, buffer_size, memory_port);
794 /* Make sure that honor queue limit option is unset on the thread. */
795 th->options &= (~TH_OPT_HONOR_QLIMIT);
796
797 if (kr == MACH_SEND_TIMED_OUT) {
798 kr = KERN_SUCCESS;
799 }
800
801 ipc_port_release_send(memory_port);
802 return kr;
803 }
804
805 /*
806 * Routine: atm_value_alloc_init
807 * Purpose: Allocates an atm value struct and initialize it.
808 * Returns: atm_value_t: On Success with a sync count on atm_value.
809 * ATM_VALUE_NULL: On failure.
810 */
811 static atm_value_t
812 atm_value_alloc_init(aid_t aid)
813 {
814 atm_value_t new_atm_value = ATM_VALUE_NULL;
815
816 new_atm_value = (atm_value_t) zalloc(atm_value_zone);
817 if (new_atm_value == ATM_VALUE_NULL)
818 panic("Ran out of ATM values structure.\n\n");
819
820 new_atm_value->aid = aid;
821 queue_init(&new_atm_value->listeners);
822 new_atm_value->sync = 1;
823 new_atm_value->listener_count = 0;
824 new_atm_value->reference_count = 1;
825 lck_mtx_init(&new_atm_value->listener_lock, &atm_lock_grp, &atm_lock_attr);
826
827 #if DEVELOPMENT || DEBUG
828 lck_mtx_lock(&atm_values_list_lock);
829 queue_enter(&atm_values_list, new_atm_value, atm_value_t, value_elt);
830 lck_mtx_unlock(&atm_values_list_lock);
831 #endif
832 return new_atm_value;
833 }
834
835
836 /*
837 * Routine: get_aid
838 * Purpose: Increment the global aid counter and return it.
839 * Returns: aid
840 */
841 static aid_t
842 get_aid()
843 {
844 aid_t aid;
845 aid = (aid_t)OSIncrementAtomic64((SInt64 *)&global_aid);
846 return aid;
847 }
848
849
850 /*
851 * Routine: get_subaid
852 * Purpose: Increment the global subaid counter and return it.
853 * Returns: subaid
854 */
855 static mach_atm_subaid_t
856 get_subaid()
857 {
858 mach_atm_subaid_t next_subaid;
859 next_subaid = (mach_atm_subaid_t)OSIncrementAtomic64((SInt64 *)&global_subaid);
860 return next_subaid;
861 }
862
863
864 /*
865 * Routine: atm_value_dealloc
866 * Purpose: Drops the reference on atm value and deallocates.
867 * Deletes all the listeners on deallocation.
868 * Returns: None.
869 */
870 static void
871 atm_value_dealloc(atm_value_t atm_value)
872 {
873 if (0 < atm_value_release_internal(atm_value)) {
874 return;
875 }
876
877 assert(atm_value->reference_count == 0);
878
879 /* Free up the atm value and also remove all the listeners. */
880 atm_listener_delete_all(atm_value);
881
882 lck_mtx_destroy(&atm_value->listener_lock, &atm_lock_grp);
883
884 #if DEVELOPMENT || DEBUG
885 lck_mtx_lock(&atm_values_list_lock);
886 queue_remove(&atm_values_list, atm_value, atm_value_t, value_elt);
887 lck_mtx_unlock(&atm_values_list_lock);
888 #endif
889 zfree(atm_value_zone, atm_value);
890 return;
891 }
892
893
894 /*
895 * Routine: atm_hash_table_init
896 * Purpose: Initialize the atm aid hash table.
897 * Returns: None.
898 */
899 static void
900 atm_hash_table_init()
901 {
902 int i;
903
904 for (i = 0; i < ATM_MAX_HASH_TABLE_SIZE; i++) {
905 queue_init(&atm_value_hash_table[i].hash_list);
906 lck_mtx_init(&atm_value_hash_table[i].hash_list_lock, &atm_lock_grp, &atm_lock_attr);
907 }
908 }
909
910
911 /*
912 * Routine: atm_value_hash_table_insert
913 * Purpose: Insert an atm value in the hash table.
914 * Returns: KERN_SUCCESS on success.
915 * KERN_NAME_EXISTS if atm value already in the hash table.
916 */
917 static kern_return_t
918 atm_value_hash_table_insert(atm_value_t new_atm_value)
919 {
920 int hash_index;
921 atm_value_hash_t hash_list_head;
922 aid_t aid = new_atm_value->aid;
923 atm_value_t next;
924
925 hash_index = AID_TO_HASH(aid);
926 hash_list_head = &atm_value_hash_table[hash_index];
927
928 /* Lock the atm list and search for the aid. */
929 lck_mtx_lock(&hash_list_head->hash_list_lock);
930
931 queue_iterate(&hash_list_head->hash_list, next, atm_value_t, vid_hash_elt) {
932 if (next->aid == aid) {
933 /*
934 * aid found. return error.
935 */
936 lck_mtx_unlock(&hash_list_head->hash_list_lock);
937 return (KERN_NAME_EXISTS);
938 }
939 }
940
941 /* Enter the aid in hash and return success. */
942 queue_enter(&hash_list_head->hash_list, new_atm_value, atm_value_t, vid_hash_elt);
943 lck_mtx_unlock(&hash_list_head->hash_list_lock);
944 return KERN_SUCCESS;
945 }
946
947
948 /*
949 * Routine: atm_value_hash_table_delete
950 * Purpose: Delete the atm value from the hash table.
951 * Returns: None.
952 */
953 static void
954 atm_value_hash_table_delete(atm_value_t atm_value)
955 {
956 int hash_index;
957 atm_value_hash_t hash_list_head;
958 aid_t aid = atm_value->aid;
959
960 hash_index = AID_TO_HASH(aid);
961 hash_list_head = &atm_value_hash_table[hash_index];
962
963 lck_mtx_lock(&hash_list_head->hash_list_lock);
964 queue_remove(&hash_list_head->hash_list, atm_value, atm_value_t, vid_hash_elt);
965 lck_mtx_unlock(&hash_list_head->hash_list_lock);
966 }
967
968
969 /*
970 * Routine: get_atm_value_from_aid
971 * Purpose: Search a given aid in atm value hash table and
972 * return the atm value stucture.
973 * Returns: atm value structure if aid found.
974 * ATM_VALUE_NULL: If aid not found in atm value hash table.
975 */
976 static atm_value_t
977 get_atm_value_from_aid(aid_t aid)
978 {
979 int hash_index;
980 atm_value_hash_t hash_list_head;
981 atm_value_t next;
982
983 hash_index = AID_TO_HASH(aid);
984 hash_list_head = &atm_value_hash_table[hash_index];
985
986 /* Lock the atm list and search for the aid. */
987 lck_mtx_lock(&hash_list_head->hash_list_lock);
988
989 queue_iterate(&hash_list_head->hash_list, next, atm_value_t, vid_hash_elt) {
990 if (next->aid == aid) {
991 /*
992 * Aid found. Incerease ref count and return
993 * the atm value structure.
994 */
995 atm_value_get_ref(next);
996 lck_mtx_unlock(&hash_list_head->hash_list_lock);
997 return (next);
998 }
999 }
1000 lck_mtx_unlock(&hash_list_head->hash_list_lock);
1001 return ATM_VALUE_NULL;
1002 }
1003
1004
1005 /*
1006 * Routine: atm_value_get_ref
1007 * Purpose: Get a reference on atm value.
1008 * Returns: None.
1009 */
1010 static void
1011 atm_value_get_ref(atm_value_t atm_value)
1012 {
1013 atm_value_reference_internal(atm_value);
1014 }
1015
1016
1017 /*
1018 * Routine: atm_listener_insert
1019 * Purpose: Insert a listener to an atm value.
1020 * Returns: KERN_SUCCESS on success.
1021 * KERN_FAILURE if the task is already present as a listener.
1022 */
1023 static kern_return_t
1024 atm_listener_insert(
1025 atm_value_t atm_value,
1026 atm_task_descriptor_t task_descriptor,
1027 atm_guard_t guard)
1028 {
1029 atm_link_object_t new_link_object;
1030 atm_link_object_t next, elem;
1031 int32_t freed_count = 0, dead_but_not_freed = 0, listener_count;
1032 boolean_t element_found = FALSE;
1033 queue_head_t free_listeners;
1034
1035 new_link_object = (atm_link_object_t) zalloc(atm_link_objects_zone);
1036 new_link_object->descriptor = task_descriptor;
1037 new_link_object->reference_count = 1;
1038 new_link_object->guard = guard;
1039
1040 /* Get a reference on the task descriptor */
1041 atm_descriptor_get_reference(task_descriptor);
1042 queue_init(&free_listeners);
1043 listener_count = atm_value->listener_count;
1044
1045 /* Check if the task is already on the listener list */
1046 lck_mtx_lock(&atm_value->listener_lock);
1047
1048 next = (atm_link_object_t)(void *) queue_first(&atm_value->listeners);
1049 while (!queue_end(&atm_value->listeners, (queue_entry_t)next)) {
1050 elem = next;
1051 next = (atm_link_object_t)(void *) queue_next(&next->listeners_element);
1052
1053 /* Check for dead tasks */
1054 if (elem->descriptor->flags == ATM_TASK_DEAD) {
1055 if ((dead_but_not_freed > ATM_LIST_DEAD_MAX) || elem->guard == 0) {
1056 queue_remove(&atm_value->listeners, elem, atm_link_object_t, listeners_element);
1057 queue_enter(&free_listeners, elem, atm_link_object_t, listeners_element);
1058 atm_listener_count_decr_internal(atm_value);
1059 freed_count++;
1060 } else {
1061 dead_but_not_freed++;
1062 }
1063 continue;
1064 }
1065
1066 if (element_found)
1067 continue;
1068
1069 if (elem->descriptor == task_descriptor) {
1070 /* Increment reference count on Link object. */
1071 atm_link_get_reference(elem);
1072
1073 /* Replace the guard with the new one, the old guard is anyways on unregister path. */
1074 elem->guard = guard;
1075 element_found = TRUE;
1076 KERNEL_DEBUG_CONSTANT((ATM_CODE(ATM_GETVALUE_INFO, (ATM_VALUE_REPLACED))) | DBG_FUNC_NONE,
1077 VM_KERNEL_ADDRPERM(atm_value), atm_value->aid, guard, 0, 0);
1078
1079 }
1080 }
1081
1082 if (element_found) {
1083 lck_mtx_unlock(&atm_value->listener_lock);
1084 /* Drop the extra reference on task descriptor taken by this function. */
1085 atm_task_descriptor_dealloc(task_descriptor);
1086 zfree(atm_link_objects_zone, new_link_object);
1087 } else {
1088 KERNEL_DEBUG_CONSTANT((ATM_CODE(ATM_GETVALUE_INFO, (ATM_VALUE_ADDED))) | DBG_FUNC_NONE,
1089 VM_KERNEL_ADDRPERM(atm_value), atm_value->aid, guard, 0, 0);
1090
1091 queue_enter(&atm_value->listeners, new_link_object, atm_link_object_t, listeners_element);
1092 atm_listener_count_incr_internal(atm_value);
1093 lck_mtx_unlock(&atm_value->listener_lock);
1094 }
1095
1096 /* Free the link objects */
1097 while(!queue_empty(&free_listeners)) {
1098 queue_remove_first(&free_listeners, next, atm_link_object_t, listeners_element);
1099
1100 /* Deallocate the link object */
1101 atm_link_dealloc(next);
1102 }
1103
1104 KERNEL_DEBUG_CONSTANT((ATM_CODE(ATM_SUBAID_INFO, (ATM_LINK_LIST_TRIM))) | DBG_FUNC_NONE,
1105 listener_count, freed_count, dead_but_not_freed, VM_KERNEL_ADDRPERM(atm_value), 1);
1106
1107 return KERN_SUCCESS;
1108 }
1109
1110
1111 /*
1112 * Routine: atm_listener_delete_all
1113 * Purpose: Deletes all the listeners for an atm value.
1114 * Returns: None.
1115 */
1116 static void
1117 atm_listener_delete_all(atm_value_t atm_value)
1118 {
1119 atm_link_object_t next;
1120
1121 while(!queue_empty(&atm_value->listeners)) {
1122 queue_remove_first(&atm_value->listeners, next, atm_link_object_t, listeners_element);
1123
1124 /* Deallocate the link object */
1125 atm_link_dealloc(next);
1126 }
1127 }
1128
1129
1130 /*
1131 * Routine: atm_listener_delete
1132 * Purpose: Deletes a listerner for an atm value.
1133 * Returns: KERN_SUCCESS on successful unregister.
1134 * KERN_INVALID_VALUE on finding a different guard.
1135 * KERN_FAILURE on failure.
1136 */
1137 static kern_return_t
1138 atm_listener_delete(
1139 atm_value_t atm_value,
1140 atm_task_descriptor_t task_descriptor,
1141 atm_guard_t guard)
1142 {
1143 queue_head_t free_listeners;
1144 atm_link_object_t next, elem;
1145 kern_return_t kr = KERN_FAILURE;
1146
1147 queue_init(&free_listeners);
1148
1149 lck_mtx_lock(&atm_value->listener_lock);
1150
1151 next = (atm_link_object_t)(void *) queue_first(&atm_value->listeners);
1152 while (!queue_end(&atm_value->listeners, (queue_entry_t)next)) {
1153 elem = next;
1154 next = (atm_link_object_t)(void *) queue_next(&next->listeners_element);
1155
1156 if (elem->descriptor == task_descriptor) {
1157 if (elem->guard == guard) {
1158 KERNEL_DEBUG_CONSTANT((ATM_CODE(ATM_UNREGISTER_INFO,
1159 (ATM_VALUE_UNREGISTERED))) | DBG_FUNC_NONE,
1160 VM_KERNEL_ADDRPERM(atm_value), atm_value->aid, guard, elem->reference_count, 0);
1161 elem->guard = 0;
1162 kr = KERN_SUCCESS;
1163 } else {
1164 KERNEL_DEBUG_CONSTANT((ATM_CODE(ATM_UNREGISTER_INFO,
1165 (ATM_VALUE_DIFF_MAILBOX))) | DBG_FUNC_NONE,
1166 VM_KERNEL_ADDRPERM(atm_value), atm_value->aid, elem->guard, elem->reference_count, 0);
1167 kr = KERN_INVALID_VALUE;
1168 }
1169 if (0 == atm_link_object_release_internal(elem)) {
1170 queue_remove(&atm_value->listeners, elem, atm_link_object_t, listeners_element);
1171 queue_enter(&free_listeners, elem, atm_link_object_t, listeners_element);
1172 atm_listener_count_decr_internal(atm_value);
1173 }
1174 break;
1175 }
1176 }
1177 lck_mtx_unlock(&atm_value->listener_lock);
1178
1179 while(!queue_empty(&free_listeners)) {
1180 queue_remove_first(&free_listeners, next, atm_link_object_t, listeners_element);
1181
1182 /* Deallocate the link object */
1183 atm_link_dealloc(next);
1184 }
1185 return kr;
1186 }
1187
1188
1189 /*
1190 * Routine: atm_descriptor_alloc_init
1191 * Purpose: Allocate an atm task descriptor and initialize it and takes a reference.
1192 * Returns: atm task descriptor: On success.
1193 * NULL: on error.
1194 */
1195 static atm_task_descriptor_t
1196 atm_task_descriptor_alloc_init(
1197 mach_port_t trace_buffer,
1198 uint64_t buffer_size,
1199 task_t __assert_only task)
1200 {
1201 atm_task_descriptor_t new_task_descriptor;
1202
1203 new_task_descriptor = (atm_task_descriptor_t) zalloc(atm_descriptors_zone);
1204
1205 new_task_descriptor->trace_buffer = trace_buffer;
1206 new_task_descriptor->trace_buffer_size = buffer_size;
1207 new_task_descriptor->reference_count = 1;
1208 new_task_descriptor->flags = 0;
1209 lck_mtx_init(&new_task_descriptor->lock, &atm_lock_grp, &atm_lock_attr);
1210
1211 #if DEVELOPMENT || DEBUG
1212 new_task_descriptor->task = task;
1213 lck_mtx_lock(&atm_descriptors_list_lock);
1214 queue_enter(&atm_descriptors_list, new_task_descriptor, atm_task_descriptor_t, descriptor_elt);
1215 lck_mtx_unlock(&atm_descriptors_list_lock);
1216 #endif
1217
1218 return new_task_descriptor;
1219 }
1220
1221
1222 /*
1223 * Routine: atm_descriptor_get_reference
1224 * Purpose: Get a reference count on task descriptor.
1225 * Returns: None.
1226 */
1227 static void
1228 atm_descriptor_get_reference(atm_task_descriptor_t task_descriptor)
1229 {
1230 atm_task_desc_reference_internal(task_descriptor);
1231 }
1232
1233
1234 /*
1235 * Routine: atm_task_descriptor_dealloc
1236 * Prupose: Drops the reference on atm descriptor.
1237 * Returns: None.
1238 */
1239 static void
1240 atm_task_descriptor_dealloc(atm_task_descriptor_t task_descriptor)
1241 {
1242 if (0 < atm_task_desc_release_internal(task_descriptor)) {
1243 return;
1244 }
1245
1246 assert(task_descriptor->reference_count == 0);
1247
1248 #if DEVELOPMENT || DEBUG
1249 lck_mtx_lock(&atm_descriptors_list_lock);
1250 queue_remove(&atm_descriptors_list, task_descriptor, atm_task_descriptor_t, descriptor_elt);
1251 lck_mtx_unlock(&atm_descriptors_list_lock);
1252 #endif
1253 /* release the send right for the named memory entry */
1254 ipc_port_release_send(task_descriptor->trace_buffer);
1255 lck_mtx_destroy(&task_descriptor->lock, &atm_lock_grp);
1256 zfree(atm_descriptors_zone, task_descriptor);
1257 return;
1258 }
1259
1260
1261 /*
1262 * Routine: atm_link_get_reference
1263 * Purpose: Get a reference count on atm link object.
1264 * Returns: None.
1265 */
1266 static void
1267 atm_link_get_reference(atm_link_object_t link_object)
1268 {
1269 atm_link_object_reference_internal(link_object);
1270 }
1271
1272
1273 /*
1274 * Routine: atm_link_dealloc
1275 * Prupose: Drops the reference on link object.
1276 * Returns: None.
1277 */
1278 static void
1279 atm_link_dealloc(atm_link_object_t link_object)
1280 {
1281 /* Drop the reference on atm task descriptor. */
1282 atm_task_descriptor_dealloc(link_object->descriptor);
1283 zfree(atm_link_objects_zone, link_object);
1284 }
1285
1286
1287 /*
1288 * Routine: atm_register_trace_memory
1289 * Purpose: Registers trace memory for a task.
1290 * Returns: KERN_SUCCESS: on Success.
1291 * KERN_FAILURE: on Error.
1292 */
1293 kern_return_t
1294 atm_register_trace_memory(
1295 task_t task,
1296 uint64_t trace_buffer_address,
1297 uint64_t buffer_size)
1298 {
1299 atm_task_descriptor_t task_descriptor;
1300 mach_port_t trace_buffer = MACH_PORT_NULL;
1301 kern_return_t kr = KERN_SUCCESS;
1302
1303 if (disable_atm || (atm_get_diagnostic_config() & ATM_TRACE_DISABLE))
1304 return KERN_NOT_SUPPORTED;
1305
1306 if (task != current_task())
1307 return KERN_INVALID_ARGUMENT;
1308
1309 if (task->atm_context != NULL
1310 || (void *)trace_buffer_address == NULL
1311 || buffer_size == 0
1312 || (buffer_size & PAGE_MASK) != 0
1313 || buffer_size > MAX_TRACE_BUFFER_SIZE) {
1314 return KERN_INVALID_ARGUMENT;
1315 }
1316
1317 vm_map_t map = current_map();
1318 memory_object_size_t mo_size = (memory_object_size_t) buffer_size;
1319 kr = mach_make_memory_entry_64(map,
1320 &mo_size,
1321 (mach_vm_offset_t)trace_buffer_address,
1322 VM_PROT_READ,
1323 &trace_buffer,
1324 NULL);
1325 if (kr != KERN_SUCCESS)
1326 return kr;
1327
1328 task_descriptor = atm_task_descriptor_alloc_init(trace_buffer, buffer_size, task);
1329 if (task_descriptor == ATM_TASK_DESCRIPTOR_NULL) {
1330 ipc_port_release_send(trace_buffer);
1331 return KERN_NO_SPACE;
1332 }
1333
1334 task_lock(task);
1335 if (task->atm_context == NULL) {
1336 task->atm_context = task_descriptor;
1337 kr = KERN_SUCCESS;
1338 } else {
1339 kr = KERN_FAILURE;
1340 }
1341 task_unlock(task);
1342
1343 if (kr != KERN_SUCCESS) {
1344 /* undo the mapping and allocations since we failed to hook descriptor to task */
1345 atm_task_descriptor_dealloc(task_descriptor);
1346 }
1347 return KERN_SUCCESS;
1348 }
1349
1350 /*
1351 * Routine: atm_set_diagnostic_config
1352 * Purpose: Set global atm_diagnostic_config and update the commpage to reflect
1353 * the new value.
1354 * Returns: Error if ATM is disabled.
1355 */
1356 extern uint32_t atm_diagnostic_config; /* Proxied to commpage for fast user access */
1357 kern_return_t
1358 atm_set_diagnostic_config(uint32_t diagnostic_config)
1359 {
1360 if (disable_atm)
1361 return KERN_NOT_SUPPORTED;
1362
1363 atm_diagnostic_config = diagnostic_config;
1364 commpage_update_atm_diagnostic_config(atm_diagnostic_config);
1365
1366 return KERN_SUCCESS;
1367 }
1368
1369
1370 /*
1371 * Routine: atm_get_diagnostic_config
1372 * Purpose: Get global atm_diagnostic_config.
1373 * Returns: Diagnostic value
1374 */
1375 uint32_t
1376 atm_get_diagnostic_config(void)
1377 {
1378 return atm_diagnostic_config;
1379 }
1380
1381
1382 /*
1383 * Routine: atm_value_unregister
1384 * Purpose: Unregisters a process from an activity id.
1385 * Returns: KERN_SUCCESS on successful unregister.
1386 * KERN_INVALID_VALUE on finding a diff guard.
1387 * KERN_FAILURE on failure.
1388 */
1389 static kern_return_t
1390 atm_value_unregister(
1391 atm_value_t atm_value,
1392 atm_task_descriptor_t task_descriptor,
1393 atm_guard_t guard)
1394 {
1395 kern_return_t kr;
1396
1397 if (task_descriptor == ATM_TASK_DESCRIPTOR_NULL)
1398 return KERN_INVALID_TASK;
1399
1400 kr = atm_listener_delete(atm_value, task_descriptor, guard);
1401 return kr;
1402 }
1403
1404
1405 /*
1406 * Routine: atm_value_register
1407 * Purpose: Registers a process for an activity id.
1408 * Returns: KERN_SUCCESS on successful register.
1409 * KERN_INVALID_TASK on finding a null task atm context.
1410 * KERN_FAILURE on failure.
1411 */
1412 static kern_return_t
1413 atm_value_register(
1414 atm_value_t atm_value,
1415 atm_task_descriptor_t task_descriptor,
1416 atm_guard_t guard)
1417 {
1418 kern_return_t kr;
1419
1420 if (task_descriptor == ATM_TASK_DESCRIPTOR_NULL)
1421 return KERN_INVALID_TASK;
1422
1423 kr = atm_listener_insert(atm_value, task_descriptor, guard);
1424 return kr;
1425 }
1426
1427
1428 void
1429 atm_task_descriptor_destroy(atm_task_descriptor_t task_descriptor)
1430 {
1431 /* Mark the task dead in the task descriptor to make task descriptor eligible for cleanup. */
1432 lck_mtx_lock(&task_descriptor->lock);
1433 task_descriptor->flags = ATM_TASK_DEAD;
1434 lck_mtx_unlock(&task_descriptor->lock);
1435
1436 atm_task_descriptor_dealloc(task_descriptor);
1437 }