1*d4514f0bSApple OSS Distributions /* 2*d4514f0bSApple OSS Distributions * Copyright (c) 2019 Apple Computer, Inc. All rights reserved. 3*d4514f0bSApple OSS Distributions * 4*d4514f0bSApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*d4514f0bSApple OSS Distributions * 6*d4514f0bSApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*d4514f0bSApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*d4514f0bSApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*d4514f0bSApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*d4514f0bSApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*d4514f0bSApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*d4514f0bSApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*d4514f0bSApple OSS Distributions * terms of an Apple operating system software license agreement. 14*d4514f0bSApple OSS Distributions * 15*d4514f0bSApple OSS Distributions * Please obtain a copy of the License at 16*d4514f0bSApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*d4514f0bSApple OSS Distributions * 18*d4514f0bSApple OSS Distributions * The Original Code and all software distributed under the License are 19*d4514f0bSApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*d4514f0bSApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*d4514f0bSApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*d4514f0bSApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*d4514f0bSApple OSS Distributions * Please see the License for the specific language governing rights and 24*d4514f0bSApple OSS Distributions * limitations under the License. 25*d4514f0bSApple OSS Distributions * 26*d4514f0bSApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*d4514f0bSApple OSS Distributions */ 28*d4514f0bSApple OSS Distributions 29*d4514f0bSApple OSS Distributions #ifndef EXC_HELPERS_H 30*d4514f0bSApple OSS Distributions #define EXC_HELPERS_H 31*d4514f0bSApple OSS Distributions 32*d4514f0bSApple OSS Distributions #include <mach/mach.h> 33*d4514f0bSApple OSS Distributions #include <mach/exception.h> 34*d4514f0bSApple OSS Distributions #include <stdbool.h> 35*d4514f0bSApple OSS Distributions #include <mach/thread_status.h> 36*d4514f0bSApple OSS Distributions 37*d4514f0bSApple OSS Distributions /** 38*d4514f0bSApple OSS Distributions * Callback invoked by run_exception_handler() when a Mach exception is 39*d4514f0bSApple OSS Distributions * received. 40*d4514f0bSApple OSS Distributions * 41*d4514f0bSApple OSS Distributions * @param task the task causing the exception 42*d4514f0bSApple OSS Distributions * @param thread the task causing the exception 43*d4514f0bSApple OSS Distributions * @param type exception type received from the kernel 44*d4514f0bSApple OSS Distributions * @param codes exception codes received from the kernel 45*d4514f0bSApple OSS Distributions * 46*d4514f0bSApple OSS Distributions * @return how much the exception handler should advance the program 47*d4514f0bSApple OSS Distributions * counter, in bytes (in order to move past the code causing the 48*d4514f0bSApple OSS Distributions * exception) 49*d4514f0bSApple OSS Distributions */ 50*d4514f0bSApple OSS Distributions typedef size_t (*exc_handler_callback_t)(mach_port_t task, mach_port_t thread, 51*d4514f0bSApple OSS Distributions exception_type_t type, mach_exception_data_t codes); 52*d4514f0bSApple OSS Distributions 53*d4514f0bSApple OSS Distributions typedef size_t (*exc_handler_protected_callback_t)(task_id_token_t token, uint64_t thread_d, 54*d4514f0bSApple OSS Distributions exception_type_t type, mach_exception_data_t codes); 55*d4514f0bSApple OSS Distributions 56*d4514f0bSApple OSS Distributions typedef size_t (*exc_handler_state_protected_callback_t)(task_id_token_t token, uint64_t thread_d, 57*d4514f0bSApple OSS Distributions exception_type_t type, mach_exception_data_t codes, thread_state_t in_state, 58*d4514f0bSApple OSS Distributions mach_msg_type_number_t in_state_count, thread_state_t out_state, mach_msg_type_number_t *out_state_count); 59*d4514f0bSApple OSS Distributions 60*d4514f0bSApple OSS Distributions typedef kern_return_t (*exc_handler_backtrace_callback_t)(kcdata_object_t kcdata_object, 61*d4514f0bSApple OSS Distributions exception_type_t type, mach_exception_data_t codes); 62*d4514f0bSApple OSS Distributions 63*d4514f0bSApple OSS Distributions /** 64*d4514f0bSApple OSS Distributions * Allocates a Mach port and configures it to receive exception messages. 65*d4514f0bSApple OSS Distributions * 66*d4514f0bSApple OSS Distributions * @param exception_mask exception types that this Mach port should receive 67*d4514f0bSApple OSS Distributions * 68*d4514f0bSApple OSS Distributions * @return a newly-allocated and -configured Mach port 69*d4514f0bSApple OSS Distributions */ 70*d4514f0bSApple OSS Distributions mach_port_t 71*d4514f0bSApple OSS Distributions create_exception_port(exception_mask_t exception_mask); 72*d4514f0bSApple OSS Distributions 73*d4514f0bSApple OSS Distributions mach_port_t 74*d4514f0bSApple OSS Distributions create_exception_port_behavior64(exception_mask_t exception_mask, exception_behavior_t behavior); 75*d4514f0bSApple OSS Distributions 76*d4514f0bSApple OSS Distributions /** 77*d4514f0bSApple OSS Distributions * Handles one exception received on the provided Mach port, by running the 78*d4514f0bSApple OSS Distributions * provided callback. 79*d4514f0bSApple OSS Distributions * 80*d4514f0bSApple OSS Distributions * @param exc_port Mach port configured to receive exception messages 81*d4514f0bSApple OSS Distributions * @param callback callback to run when an exception is received 82*d4514f0bSApple OSS Distributions */ 83*d4514f0bSApple OSS Distributions void 84*d4514f0bSApple OSS Distributions run_exception_handler(mach_port_t exc_port, exc_handler_callback_t callback); 85*d4514f0bSApple OSS Distributions 86*d4514f0bSApple OSS Distributions void 87*d4514f0bSApple OSS Distributions run_exception_handler_behavior64(mach_port_t exc_port, void *preferred_callback, void *callback, 88*d4514f0bSApple OSS Distributions exception_behavior_t behavior, bool run_once); 89*d4514f0bSApple OSS Distributions 90*d4514f0bSApple OSS Distributions /** 91*d4514f0bSApple OSS Distributions * Handles every exception received on the provided Mach port, by running the 92*d4514f0bSApple OSS Distributions * provided callback. 93*d4514f0bSApple OSS Distributions * 94*d4514f0bSApple OSS Distributions * @param exc_port Mach port configured to receive exception messages 95*d4514f0bSApple OSS Distributions * @param callback callback to run when an exception is received 96*d4514f0bSApple OSS Distributions */ 97*d4514f0bSApple OSS Distributions void 98*d4514f0bSApple OSS Distributions repeat_exception_handler(mach_port_t exc_port, exc_handler_callback_t callback); 99*d4514f0bSApple OSS Distributions 100*d4514f0bSApple OSS Distributions #endif /* EXC_HELPERS_H */ 101