X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/ff6e181ae92fc6f1e89841290f461d1f2f9badd9..d26ffc64f583ab2d29df48f13518685602bc8832:/osfmk/mach/syscall_sw.h diff --git a/osfmk/mach/syscall_sw.h b/osfmk/mach/syscall_sw.h index 82cfa9ba4..381bfc510 100644 --- a/osfmk/mach/syscall_sw.h +++ b/osfmk/mach/syscall_sw.h @@ -1,14 +1,19 @@ /* * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * - * @APPLE_LICENSE_HEADER_START@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in - * compliance with the License. Please obtain a copy of the License at - * http://www.opensource.apple.com/apsl/ and read it before using this - * file. + * compliance with the License. The rights granted to you under the License + * may not be used to create, or enable the creation or redistribution of, + * unlawful or unlicensed copies of an Apple operating system, or to + * circumvent, violate, or enable the circumvention or violation of, any + * terms of an Apple operating system software license agreement. + * + * Please obtain a copy of the License at + * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER @@ -18,7 +23,7 @@ * Please see the License for the specific language governing rights and * limitations under the License. * - * @APPLE_LICENSE_HEADER_END@ + * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ @@ -71,6 +76,29 @@ * table in . */ +/* + * i386 and x86_64 just load of the stack or use + * registers in order; no munging is required, + * and number of args is ignored. ARM loads args + * into registers beyond r3, unlike the normal + * procedure call standard; we pad for 64-bit args. + */ +kernel_trap(_kernelrpc_mach_vm_allocate_trap,-10,5) /* 4 args, +1 for mach_vm_size_t */ +kernel_trap(_kernelrpc_mach_vm_purgable_control_trap,-11,5) /* 4 args, +1 for mach_vm_offset_t */ +kernel_trap(_kernelrpc_mach_vm_deallocate_trap,-12,5) /* 3 args, +2 for mach_vm_size_t and mach_vm_address_t */ +kernel_trap(_kernelrpc_mach_vm_protect_trap,-14,7) /* 5 args, +2 for mach_vm_address_t and mach_vm_size_t */ +kernel_trap(_kernelrpc_mach_vm_map_trap,-15,9) +kernel_trap(_kernelrpc_mach_port_allocate_trap,-16,3) +kernel_trap(_kernelrpc_mach_port_destroy_trap,-17,2) +kernel_trap(_kernelrpc_mach_port_deallocate_trap,-18,2) +kernel_trap(_kernelrpc_mach_port_mod_refs_trap,-19,4) +kernel_trap(_kernelrpc_mach_port_move_member_trap,-20,3) +kernel_trap(_kernelrpc_mach_port_insert_right_trap,-21,4) +kernel_trap(_kernelrpc_mach_port_insert_member_trap,-22,3) +kernel_trap(_kernelrpc_mach_port_extract_member_trap,-23,3) +kernel_trap(_kernelrpc_mach_port_construct_trap,-24,5) +kernel_trap(_kernelrpc_mach_port_destruct_trap,-25,5) + kernel_trap(mach_reply_port,-26,0) kernel_trap(thread_self_trap,-27,0) kernel_trap(task_self_trap,-28,0) @@ -86,21 +114,25 @@ kernel_trap(semaphore_wait_signal_trap,-37,2) kernel_trap(semaphore_timedwait_trap,-38,3) kernel_trap(semaphore_timedwait_signal_trap,-39,4) -#if !defined(__LP64__) -kernel_trap(init_process,-41,0) -kernel_trap(map_fd,-43,5) -#endif /* __LP64__ */ +kernel_trap(_kernelrpc_mach_port_guard_trap,-41,5) +kernel_trap(_kernelrpc_mach_port_unguard_trap,-42,4) +kernel_trap(mach_generate_activity_id, -43, 3) +kernel_trap(task_name_for_pid,-44,3) kernel_trap(task_for_pid,-45,3) kernel_trap(pid_for_task,-46,2) -#if !defined(__LP64__) +#if defined(__LP64__) kernel_trap(macx_swapon,-48, 4) kernel_trap(macx_swapoff,-49, 2) +#else /* __LP64__ */ +kernel_trap(macx_swapon,-48, 5) +kernel_trap(macx_swapoff,-49, 3) +#endif /* __LP64__ */ +kernel_trap(thread_get_special_reply_port,-50,0) kernel_trap(macx_triggers,-51, 4) kernel_trap(macx_backing_store_suspend,-52, 1) kernel_trap(macx_backing_store_recovery,-53, 1) -#endif /* __LP64__ */ /* These are currently used by pthreads even on LP64 */ /* But as soon as that is fixed - they will go away there */ @@ -110,7 +142,15 @@ kernel_trap(swtch,-60,0) kernel_trap(syscall_thread_switch,-61,3) kernel_trap(clock_sleep_trap,-62,5) -kernel_trap(mach_timebase_info,-89,1) +/* voucher traps */ +kernel_trap(host_create_mach_voucher_trap,-70,4) +/* mach_voucher_extract_attr_content */ +kernel_trap(mach_voucher_extract_attr_recipe_trap,-72,4) +/* mach_voucher_extract_all_attr_recipes */ +/* mach_voucher_attr_command */ +/* mach_voucher_debug_info */ + +kernel_trap(mach_timebase_info_trap,-89,1) #if defined(__LP64__) /* unit64_t arguments passed in one register in LP64 */ @@ -130,11 +170,15 @@ kernel_trap(mk_timer_arm,-93,3) #endif /* __LP64__ */ kernel_trap(mk_timer_cancel,-94,2) - -#if !defined(__LP64__) -kernel_trap(MKGetTimeBaseInfo,-95,5) -#endif /* __LP64__ */ - +#if defined(__LP64__) +kernel_trap(mk_timer_arm_leeway,-95,4) +#else +kernel_trap(mk_timer_arm_leeway,-95,7) +#endif +/* + * N.B: Trap #-100 is in use by IOTrap.s in the IOKit Framework + * (iokit_user_client_trap) + */ #endif /* _MACH_SYSCALL_SW_H_ */ #endif /* PRIVATE */