2 * Copyright (c) 2000-2016 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988 Carnegie Mellon University
34 * All Rights Reserved.
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
57 * NOTICE: This file was modified by McAfee Research in 2004 to introduce
58 * support for mandatory and extensible security protections. This notice
59 * is included in support of clause 2.2 (b) of the Apple Public License,
65 * Mach kernel interface type declarations
68 #ifndef _MACH_MACH_TYPES_DEFS_
69 #define _MACH_MACH_TYPES_DEFS_
72 #include <mach/std_types.defs>
74 type memory_object_offset_t = uint64_t;
75 type memory_object_size_t = uint64_t;
76 type memory_object_cluster_size_t = uint32_t;
77 type memory_object_fault_info_t = array[16] of integer_t;
81 /* Universal Page Lists - restricted to (in-kernel) pagers for now */
82 type upl_size_t = uint32_t;
83 type upl_offset_t = uint32_t;
84 type upl_page_info_t = struct[2] of integer_t;
85 type upl_page_info_array_t = array[*:256] of upl_page_info_t;
87 type upl_t = mach_port_t
88 intran: upl_t convert_port_to_upl(mach_port_t)
89 outtran: mach_port_t convert_upl_to_port(upl_t)
90 destructor: upl_deallocate(upl_t)
93 #endif /* KERNEL_PRIVATE */
95 type mach_port_status_t = struct[10] of integer_t; /* obsolete */
96 type mach_port_info_ext_t = struct[17] of integer_t;
98 /* mach_port_info_t: can hold either a
99 * mach_port_status_t (9 ints) or a
100 * mach_port_limits_t (1 int) or a
101 * mach_port_info_ext_t (17 ints). If new flavors of
102 * mach_port_{get,set}_attributes are added, the size of
103 * this array may have to be increased. (See mach/port.h)
105 type mach_port_flavor_t = int;
106 type mach_port_info_t = array[*:17] of integer_t;
109 * mach_msg_max_trailer_t: can hold
110 * mach_msg_trailer_type_t (1 int)
111 * mach_msg_trailer_size_t (1 int)
112 * mach_port_seqno_t (1 int)
113 * security_token_t (2 ints)
114 * audit_token_t (8 ints)
115 * mach_port_context_t (2 ints)
117 * msg_labels_t (1 int)
119 type mach_msg_trailer_type_t = int;
120 type mach_msg_trailer_info_t = array[*:68] of char;
122 type task_t = mach_port_t
124 intran: task_t convert_port_to_task(mach_port_t)
125 outtran: mach_port_t convert_task_to_port(task_t)
126 destructor: task_deallocate(task_t)
127 #endif /* KERNEL_SERVER */
130 type task_name_t = mach_port_t
132 intran: task_name_t convert_port_to_task_name(mach_port_t)
133 outtran: mach_port_t convert_task_name_to_port(task_name_t)
134 destructor: task_name_deallocate(task_name_t)
135 #endif /* KERNEL_SERVER */
138 type task_inspect_t = mach_port_t
140 intran: task_inspect_t convert_port_to_task_inspect(mach_port_t)
141 outtran: mach_port_t convert_task_inspect_to_port(task_inspect_t)
142 destructor: task_inspect_deallocate(task_inspect_t)
143 #endif /* KERNEL_SERVER */
146 type thread_t = mach_port_t
148 intran: thread_t convert_port_to_thread(mach_port_t)
149 outtran: mach_port_t convert_thread_to_port(thread_t)
150 destructor: thread_deallocate(thread_t)
151 #endif /* KERNEL_SERVER */
154 type thread_inspect_t = mach_port_t
156 intran: thread_inspect_t convert_port_to_thread_inspect(mach_port_t)
157 outtran: mach_port_t convert_thread_inspect_to_port(thread_inspect_t)
158 destructor: thread_inspect_deallocate(thread_inspect_t)
159 #endif /* KERNEL_SERVER */
162 type thread_act_t = mach_port_t
164 intran: thread_act_t convert_port_to_thread(mach_port_t)
165 outtran: mach_port_t convert_thread_to_port(thread_act_t)
166 destructor: thread_deallocate(thread_act_t)
167 #endif /* KERNEL_SERVER */
170 type thread_act_consume_ref_t = mach_port_move_send_t
171 cusertype: thread_act_t
173 intran: thread_act_t convert_port_to_thread(mach_port_t)
174 destructor: thread_deallocate(thread_act_t)
175 #endif /* KERNEL_SERVER */
178 /* thread_state_t: This inline array can hold
179 * a machine-dependent amount of data, defined in
180 * mach/machine/???? (currently THREAD_STATE_MAX,
181 * in mach/thread_state.h)
183 #include <mach/machine/thread_state.h>
184 type thread_state_flavor_t = int;
185 type thread_state_t = array[*:THREAD_STATE_MAX] of natural_t;
187 type task_array_t = ^array[] of task_t;
188 type thread_array_t = ^array[] of thread_t;
189 type thread_act_array_t = ^array[] of thread_act_t;
190 type act_params_t = array[6] of int;
192 type vm_map_t = mach_port_t
194 intran: vm_map_t convert_port_to_map(mach_port_t)
195 destructor: vm_map_deallocate(vm_map_t)
196 #endif /* KERNEL_SERVER */
199 type vm_task_entry_t = mach_port_t
202 intran: vm_map_t convert_port_entry_to_map(mach_port_t)
203 destructor: vm_map_deallocate(vm_map_t)
204 #endif /* KERNEL_SERVER */
207 type ipc_space_t = mach_port_t
209 intran: ipc_space_t convert_port_to_space(mach_port_t)
210 destructor: space_deallocate(ipc_space_t)
211 #endif /* KERNEL_SERVER */
214 type ipc_space_inspect_t = mach_port_t
216 intran: ipc_space_inspect_t convert_port_to_space_inspect(mach_port_t)
217 destructor: space_inspect_deallocate(ipc_space_inspect_t)
218 #endif /* KERNEL_SERVER */
221 type vm_prot_t = int;
222 type vm_inherit_t = int;
223 type vm_purgable_t = int;
224 type xxx_vm_statistics_data_t = struct[13] of integer_t;
225 type vm_behavior_t = int;
226 type vm_statistics_data_t = struct[15] of integer_t;
227 type vm_machine_attribute_t = int;
228 type vm_machine_attribute_val_t = int;
229 type vm_sync_t = int;
231 /* thread_info_t: this inline array can hold any of:
232 * thread_basic_info_t (10 ints)
233 * policy_timeshare_info_t (5 ints)
234 * policy_fifo_info_t (4 ints)
235 * policy_rr_info_t (5 ints)
236 * thread_extended_info (12 ints + 64 chars)
237 * if other thread_info flavors are added, this
238 * definition may need to be changed. (See
239 * mach/thread_info.h and mach/policy.h) */
240 type thread_flavor_t = int;
241 type thread_info_t = array[*:32] of integer_t;
243 type thread_policy_flavor_t = natural_t;
244 type thread_policy_t = array[*:16] of integer_t;
246 /* task_info_t: this inline array can hold any of:
247 * task_basic_info_32_t (8 ints)
248 * task_basic_info_64_t (10 ints)
249 * task_events_info_t (8 ints)
250 * task_thread_times_info_t (4 ints)
251 * policy_timeshare_info_t (5 ints)
252 * policy_fifo_info_t (4 ints)
253 * policy_rr_info_t (5 ints)
254 * task security token (2 ints)
255 * task audit token (8 ints)
256 * dyld info (2 64-bit ints and 1 int)
257 * task_extmod_info_t (8 64-bit ints)
258 * task_basic_info_64_2_t
259 * mach_task_basic_info_t (12 ints)
260 * task_power_info_t (18 ints)
261 * If other task_info flavors are added, this
262 * definition may need to be changed. (See
263 * mach/task_info.h and mach/policy.h) */
264 type task_flavor_t = int;
265 type task_info_t = array[*:52] of integer_t;
267 type task_purgable_info_t = struct[68] of integer_t;
269 type task_policy_flavor_t = natural_t;
270 type task_policy_t = array[*:16] of integer_t;
272 type task_inspect_flavor_t = natural_t;
273 type task_inspect_info_t = array[*:4] of integer_t;
275 type mem_entry_name_port_t = mach_port_t
277 intran: mem_entry_name_port_t null_conversion(mach_port_t)
278 outtran: mach_port_t null_conversion(mem_entry_name_port_t)
279 #endif /* KERNEL_SERVER */
282 type mem_entry_name_port_move_send_t = mach_port_move_send_t
283 cusertype: mem_entry_name_port_t
285 intran: mem_entry_name_port_t null_conversion(mach_port_t)
286 outtran: mach_port_t null_conversion(mem_entry_name_port_t)
287 #endif /* KERNEL_SERVER */
290 type memory_object_default_t = mach_port_t
292 intran: memory_object_default_t null_conversion(mach_port_t)
293 outtran: mach_port_t null_conversion(memory_object_default_t)
294 #endif /* KERNEL_PRIVATE */
297 type memory_object_t = mach_port_t
299 intran: memory_object_t convert_port_to_memory_object(mach_port_t)
300 outtran: mach_port_t convert_memory_object_to_port(memory_object_t)
301 #endif /* KERNEL_PRIVATE */
305 type memory_object_control_t = mach_port_t
307 intran: memory_object_control_t convert_port_to_mo_control(mach_port_t)
308 outtran: mach_port_t convert_mo_control_to_port(memory_object_control_t)
309 destructor: memory_object_control_deallocate(memory_object_control_t)
310 #endif /* KERNEL_PRIVATE */
313 type memory_object_name_t = mach_port_t
318 type memory_object_copy_strategy_t = int;
319 type memory_object_return_t = int;
321 type machine_info_data_t = struct[5] of integer_t;
322 type machine_slot_data_t = struct[8] of integer_t;
324 type host_t = mach_port_t
326 intran: host_t convert_port_to_host(mach_port_t)
327 outtran: mach_port_t convert_host_to_port(host_t)
328 #endif /* KERNEL_SERVER */
331 type host_priv_t = mach_port_t
333 intran: host_priv_t convert_port_to_host_priv(mach_port_t)
334 #endif /* KERNEL_SERVER */
337 type host_security_t = mach_port_t
339 intran: host_security_t convert_port_to_host_security(mach_port_t)
340 #endif /* KERNEL_SERVER */
344 * host_info_t: variable-sized inline array that can contain:
346 * host_basic_info_old_t (5 ints)
347 * host_basic_info_t (12 ints)
348 * host_sched_info_t (2 ints)
349 * kernel_resource_sizes_t (5 ints)
350 * host_load_info_t (6 ints)
351 * vm_statistics32_t (15 ints)
352 * host_purgable_info_t (68 ints)
353 * host_expired_task_info uses a task_power_info (18 ints)
355 * If other host_info flavors are added, this definition may
356 * need to be changed. (See mach/{host_info,vm_statistics}.h)
358 type host_flavor_t = int;
359 type host_info_t = array[*:68] of integer_t;
361 * host_info64_t: variable-sized inline array that can contain:
363 * vm_statistics_t (6 ints and 9 longs)
364 * vm_extmod_statistics_t (6 64-bit ints)
366 type host_info64_t = array[*:256] of integer_t;
368 type processor_t = mach_port_t
370 intran: processor_t convert_port_to_processor(mach_port_t)
371 outtran: mach_port_t convert_processor_to_port(processor_t)
372 #endif /* KERNEL_SERVER */
375 type processor_array_t = ^array[] of processor_t;
377 /* processor_info_t: variable-sized inline array that can
379 * processor_basic_info_t: (5 ints)
380 * processor_cpu_load_info_t:(4 ints)
381 * processor_machine_info_t :(12 ints)
382 * If other processor_info flavors are added, this definition
383 * may need to be changed. (See mach/processor_info.h) */
384 type processor_flavor_t = int;
385 type processor_info_t = array[*:12] of integer_t;
386 type processor_info_array_t = ^array[] of integer_t;
388 type processor_set_t = mach_port_t
390 intran: processor_set_t convert_port_to_pset(mach_port_t)
391 outtran: mach_port_t convert_pset_to_port(processor_set_t)
392 destructor: pset_deallocate(processor_set_t)
393 #endif /* KERNEL_SERVER */
396 type processor_set_array_t = ^array[] of processor_set_t;
398 type processor_set_name_t = mach_port_t
400 intran: processor_set_name_t convert_port_to_pset_name(mach_port_t)
401 outtran: mach_port_t convert_pset_name_to_port(processor_set_name_t)
402 destructor: pset_deallocate(processor_set_name_t)
403 #endif /* KERNEL_SERVER */
406 type processor_set_name_array_t = ^array[] of processor_set_name_t;
408 /* processor_set_info_t: variable-size inline array
410 * processor_set_basic_info (5 ints)
411 * processor_set_load_info (4 ints)
412 * policy_timeshare_base_t (1 int)
413 * policy_fifo_base_t (1 int)
414 * policy_rr_base_t (1 int)
415 * policy_timeshare_base_t (1 int)
416 * policy_fifo_base_t (1 int)
417 * policy_rr_base_t (1 int)
419 * If other flavors are added, this definition may
420 * need to be changed. (see mach/processor.h) */
421 type processor_set_flavor_t = int;
422 type processor_set_info_t = array[*:5] of integer_t;
424 type bootstrap_t = mach_port_t;
426 type kernel_version_t = c_string[*:512];
427 type kernel_boot_info_t = c_string[*:4096];
429 type time_value_t = struct[2] of integer_t;
431 type mach_port_qos_t = struct[2] of integer_t;
433 type mach_port_options_t = struct[3] of uint64_t;
434 type mach_port_options_ptr_t = ^ mach_port_options_t;
436 type emulation_vector_t = ^array[] of vm_offset_t;
438 type inline_existence_map_t = array[*:512] of char;
441 /* policy_info_t: variable-size inline array. Can hold:
442 * policy_timeshare_info_t (5 ints)
443 * policy_fifo_info_t (4 ints)
444 * policy_rr_info_t (5 ints) */
445 type policy_base_t = array[*:5] of integer_t;
446 type policy_info_t = array[*:2] of integer_t;
447 type policy_limit_t = array[*:1] of integer_t;
449 type ledger_t = mach_port_t
451 intran: ledger_t convert_port_to_ledger(mach_port_t)
452 outtran: mach_port_t convert_ledger_to_port(ledger_t)
453 #endif /* KERNEL_SERVER */
456 type ledger_array_t = ^array[] of ledger_t;
457 type ledger_item_t = integer_t;
460 type ledger_amount_t = int64_t;
462 type security_token_t = struct[2] of uint32_t;
463 type audit_token_t = struct[8] of uint32_t;
465 type msg_labels_t = mach_port_t;
467 /* memory_object_info_t: variable-size inline array:
468 * memory_object_attr_info_t (5 ints)
469 * XXX actually it's 6 ints temporarily (object_ready!)
470 * memory_object_behave_info_t (4 ints)
471 * memory_object_perf_info_t (2 ints)
472 * old_memory_object_attr_info_t (3 ints)
473 * If other flavors are added, this definition may
474 * need to be changed. (see mach/memory_object.h) */
475 type memory_object_flavor_t = int;
476 type memory_object_info_t = array[*:6] of int;
478 /* vm_region_info_t: variable-size inline array that can hold:
479 * vm_region_basic_info_t (8 ints)
480 * If other flavors are added, this definition may
481 * need to be changed. (see mach/vm_region.h) */
482 type vm_region_flavor_t = int;
483 type vm_region_info_t = array[*:10] of int;
484 type vm_region_recurse_info_t = array[*:19] of int;
486 type vm_page_info_flavor_t = int;
487 type vm_page_info_t = array[*:32] of int;
489 type mach_vm_read_entry_t = array[512] of mach_vm_offset_t;
490 type vm_read_entry_t = array[512] of vm_offset_t;
492 type vm32_read_entry_t = array[512] of vm32_offset_t;
495 type exception_mask_t = int;
496 type exception_behavior_t = int;
498 type exception_handler_t = mach_port_t;
500 type exception_handler_array_t =
501 array[*:32] of exception_handler_t;
503 type exception_behavior_array_t =
504 array[*:32] of exception_behavior_t;
506 type exception_flavor_array_t =
507 array[*:32] of thread_state_flavor_t;
509 type exception_mask_array_t =
510 array[*:32] of exception_mask_t;
512 type semaphore_t = mach_port_t
514 intran: semaphore_t convert_port_to_semaphore(mach_port_t)
515 outtran: mach_port_t convert_semaphore_to_port(semaphore_t)
516 destructor: semaphore_dereference(semaphore_t)
517 #endif /* KERNEL_SERVER */
520 type semaphore_consume_ref_t = mach_port_move_send_t
521 cusertype: semaphore_t
523 intran: semaphore_t convert_port_to_semaphore(mach_port_t)
524 outtran: mach_port_t convert_semaphore_to_port(semaphore_t)
525 #endif /* KERNEL_SERVER */
528 type lock_set_t = mach_port_t
530 intran: lock_set_t convert_port_to_lock_set(mach_port_t)
531 outtran: mach_port_t convert_lock_set_to_port(lock_set_t)
532 destructor: lock_set_dereference(lock_set_t)
533 #endif /* KERNEL_SERVER */
536 type task_suspension_token_t = mach_port_move_send_once_t
538 intran: task_suspension_token_t convert_port_to_task_suspension_token(mach_port_t)
539 outtran: mach_port_t convert_task_suspension_token_to_port(task_suspension_token_t)
540 #endif /* KERNEL_SERVER */
544 /* public voucher types */
546 /* Mach voucher object */
547 type mach_voucher_t = mach_port_t;
548 type mach_voucher_name_t = mach_port_name_t;
550 type mach_voucher_attr_manager_t = mach_port_t;
551 type mach_voucher_attr_control_t = mach_port_t;
553 /* IPC voucher internal object */
554 type ipc_voucher_t = mach_port_t
556 intran: ipc_voucher_t convert_port_to_voucher(mach_port_t)
557 outtran: mach_port_t convert_voucher_to_port(ipc_voucher_t)
558 destructor: ipc_voucher_release(ipc_voucher_t)
559 #endif /* KERNEL_SERVER */
562 /* IPC voucher attribute control internal object */
563 type ipc_voucher_attr_control_t = mach_port_t
565 intran: ipc_voucher_attr_control_t convert_port_to_voucher_attr_control(mach_port_t)
566 outtran: mach_port_t convert_voucher_attr_control_to_port(ipc_voucher_attr_control_t)
567 destructor: ipc_voucher_attr_control_release(ipc_voucher_attr_control_t)
568 #endif /* KERNEL_SERVER */
571 type mach_voucher_attr_key_t = uint32_t;
573 type mach_voucher_attr_command_t = uint32_t;
574 type mach_voucher_attr_recipe_command_t = uint32_t;
576 type mach_voucher_attr_content_size_t = uint32_t;
577 type mach_voucher_attr_content_t = array[*:4096] of uint8_t;
578 type mach_voucher_attr_content_array_t = array[*:5120] of uint8_t;
580 type mach_voucher_attr_raw_recipe_size_t = uint32_t;
581 type mach_voucher_attr_raw_recipe_t = array[*:4096] of uint8_t;
582 type mach_voucher_attr_raw_recipe_array_t = array[*:5120] of uint8_t;
584 type mach_voucher_selector_t = uint32_t;
586 type mach_voucher_attr_value_handle_t = uint64_t;
587 type mach_voucher_attr_value_handle_array_t = array[*:4] of mach_voucher_attr_value_handle_t;
588 type mach_voucher_attr_value_reference_t = uint32_t;
590 /* kernel module loader */
592 type kmod_control_flavor_t = int;
594 type kmod_args_t = ^array[] of MACH_MSG_TYPE_BYTE
597 type io_master_t = mach_port_t;
598 type UNDServerRef = mach_port_t;
600 /* These must be kept in sync with definitions in osfmk/mach/dyld_kernel.h */
601 type dyld_kernel_image_info_t = struct[40] of MACH_MSG_TYPE_BYTE;
602 type dyld_kernel_image_info_array_t = ^array[] of dyld_kernel_image_info_t;
603 type dyld_kernel_process_info_t = struct[64] of MACH_MSG_TYPE_BYTE;
606 #ifdef MACH_KERNEL_PRIVATE
607 simport <ipc/ipc_voucher.h>; /* for voucher conversions */
608 simport <kern/ipc_kobject.h>; /* for null conversion */
609 simport <kern/ipc_tt.h>; /* for task/thread conversion */
610 simport <kern/ipc_host.h>; /* for host/processor/pset conversions */
611 simport <kern/ipc_sync.h>; /* for lock_set and semaphore conversions */
612 simport <kern/ledger.h>; /* for ledger conversions */
613 simport <kern/processor.h>; /* for processor conversions */
614 simport <kern/sync_lock.h>; /* for lock-set conversions */
615 simport <kern/sync_sema.h>; /* for semaphore conversions */
616 simport <vm/memory_object.h>; /* for memory object type conversions */
617 simport <vm/vm_map.h>; /* for vm_map conversions */
618 #endif /* MACH_KERNEL_PRIVATE */
620 simport <kern/ipc_mig.h>; /* pick up kernel-specific MIG things */
622 #endif /* KERNEL_SERVER */
625 import <mach/mach_types.h>;
627 #endif /* _MACH_MACH_TYPES_DEFS_ */
629 /* vim: set ft=c : */