Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | /* * Copyright (c) 1999 Apple Computer, Inc. All rights reserved. * * @APPLE_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. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef _DYLD_DEBUG_ #define _DYLD_DEBUG_ #include <mach/mach.h> #ifndef DYLD_BUILD /* do not include this when building dyld itself */ #include <mach-o/dyld.h> #endif /* !defined(DYLD_BUILD) */ #include <AvailabilityMacros.h> /* * The dyld debugging API is deprecated as of Mac OS X 10.4 */ enum dyld_debug_return { DYLD_SUCCESS, DYLD_INCONSISTENT_DATA, DYLD_INVALID_ARGUMENTS, DYLD_FAILURE }; struct dyld_debug_module { struct mach_header *header; unsigned long vmaddr_slide; unsigned long module_index; }; enum dyld_event_type { DYLD_IMAGE_ADDED, DYLD_MODULE_BOUND, DYLD_MODULE_REMOVED, DYLD_MODULE_REPLACED, DYLD_PAST_EVENTS_END, DYLD_IMAGE_REMOVED }; struct dyld_event { enum dyld_event_type type; struct dyld_debug_module arg[2]; }; extern enum dyld_debug_return _dyld_debug_defining_module( mach_port_t target_task, unsigned long send_timeout, unsigned long rcv_timeout, boolean_t inconsistent_data_ok, char *name, struct dyld_debug_module *module) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; extern enum dyld_debug_return _dyld_debug_is_module_bound( mach_port_t target_task, unsigned long send_timeout, unsigned long rcv_timeout, boolean_t inconsistent_data_ok, struct dyld_debug_module module, boolean_t *bound) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; extern enum dyld_debug_return _dyld_debug_bind_module( mach_port_t target_task, unsigned long send_timeout, unsigned long rcv_timeout, boolean_t inconsistent_data_ok, struct dyld_debug_module module) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; extern enum dyld_debug_return _dyld_debug_module_name( mach_port_t target_task, unsigned long send_timeout, unsigned long rcv_timeout, boolean_t inconsistent_data_ok, struct dyld_debug_module module, char **image_name, unsigned long *image_nameCnt, char **module_name, unsigned long *module_nameCnt) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; extern enum dyld_debug_return _dyld_debug_subscribe_to_events( mach_port_t target_task, unsigned long send_timeout, unsigned long rcv_timeout, boolean_t inconsistent_data_ok, void (*dyld_event_routine)(struct dyld_event event)) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; /* * _dyld_debug_add_event_subscriber() uses the mig interface functions below * to dispatch the dyld event messages from the subscriber port specified. */ extern enum dyld_debug_return _dyld_debug_add_event_subscriber( mach_port_t target_task, unsigned long send_timeout, unsigned long rcv_timeout, boolean_t inconsistent_data_ok, mach_port_t subscriber) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; /* * These structures should be produced by mig(1) from the mig generated files * but they are not. These are really only needed so the correct size of the * request and reply messages can be allocated. */ struct _dyld_event_message_request { #ifdef __MACH30__ mach_msg_header_t head; NDR_record_t NDR; struct dyld_event event; mach_msg_trailer_t trailer; #else msg_header_t head; msg_type_t eventType; struct dyld_event event; #endif }; struct _dyld_event_message_reply { #ifdef __MACH30__ mach_msg_header_t head; NDR_record_t NDR; struct dyld_event event; #else msg_header_t head; msg_type_t RetCodeType; kern_return_t RetCode; #endif }; #ifndef mig_internal /* * _dyld_event_server() is the mig generated routine to dispatch dyld event * messages. */ extern boolean_t _dyld_event_server( #ifdef __MACH30__ mach_msg_header_t *request, mach_msg_header_t *reply); #else struct _dyld_event_message_request *request, struct _dyld_event_message_reply *reply); #endif #endif /* mig_internal */ #ifndef SHLIB /* * _dyld_event_server_callback() is the routine called by _dyld_event_server() * that must be written by users of _dyld_event_server(). */ extern #ifdef __MACH30__ kern_return_t #else void #endif _dyld_event_server_callback( #ifdef __MACH30__ mach_port_t subscriber, #else port_t subscriber, #endif struct dyld_event event); #endif /* SHLIB */ /* * This is the state of the target task while we are sending a message to it. */ struct _dyld_debug_task_state { mach_port_t debug_port; mach_port_t debug_thread; unsigned int debug_thread_resume_count; unsigned int task_resume_count; mach_port_t *threads; unsigned int thread_count; }; /* * _dyld_debug_make_runnable() is called before sending messages to the * dynamic link editor. Basically it assures that the debugging * thread is the only runnable thread in the task to receive the * message. It also assures that the debugging thread is indeed * runnable if it was suspended. The function will make sure each * thread in the remote task is suspended and resumed the same number * of times, so in the end the suspend count of each individual thread * is the same. */ extern enum dyld_debug_return _dyld_debug_make_runnable( mach_port_t target_task, struct _dyld_debug_task_state *state) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; /* * _dyld_debug_restore_runnable() is called after sending messages to the * dynamic link editor. It undoes what _dyld_debug_make_runnable() did to the * task and put it back the way it was. */ extern enum dyld_debug_return _dyld_debug_restore_runnable( mach_port_t target_task, struct _dyld_debug_task_state *state) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; /* * To provide more detailed information when the APIs of the dyld debug * interfaces fail (return DYLD_FAILURE) the following structure is filled in. * After it is filled in the function registered with * set_dyld_debug_error_func() is called with a pointer to that struct. * * The local_error field is a unique number for each possible error condition * in the source code in that makes up the dyld debug APIs. The source file * and line number in the cctools libdyld directory where the dyld debug APIs * are implemented are set into the file_name and line_number fields. The * field dyld_debug_return is filled in with that would be returned by the * API (usually DYLD_FAILURE). The other fields will be zero or filled in by * the error code from the mach system call, or UNIX system call that failed. */ struct dyld_debug_error_data { enum dyld_debug_return dyld_debug_return; kern_return_t mach_error; int dyld_debug_errno; unsigned long local_error; char *file_name; unsigned long line_number; }; extern void _dyld_debug_set_error_func( void (*func)(struct dyld_debug_error_data *e)) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; #ifndef DYLD_BUILD /* do not include this when building dyld itself */ extern enum dyld_debug_return _dyld_debug_task_from_core( NSObjectFileImage coreFileImage, mach_port_t *core_task) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER_BUT_DEPRECATED_IN_MAC_OS_X_VERSION_10_4; #endif /* !defined(DYLD_BUILD) */ #endif /* _DYLD_DEBUG_ */ |