]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
39037602 | 2 | * Copyright (c) 2000-2016 Apple Inc. All rights reserved. |
1c79356b | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
1c79356b | 5 | * |
2d21ac55 A |
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. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
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 | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
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. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 27 | */ |
9bccf70c | 28 | |
1c79356b A |
29 | #ifndef _KERN_DEBUG_H_ |
30 | #define _KERN_DEBUG_H_ | |
31 | ||
39037602 A |
32 | #include <kern/kcdata.h> |
33 | ||
91447636 | 34 | #include <sys/cdefs.h> |
2d21ac55 | 35 | #include <stdint.h> |
5ba3f43e | 36 | #include <stdarg.h> |
39236c6e | 37 | #include <uuid/uuid.h> |
3e170ce0 | 38 | #include <mach/boolean.h> |
39037602 | 39 | #include <mach/kern_return.h> |
39236c6e A |
40 | |
41 | #ifndef XNU_KERNEL_PRIVATE | |
42 | #include <TargetConditionals.h> | |
43 | #endif | |
9bccf70c | 44 | |
b0d623f7 A |
45 | #ifdef __APPLE_API_PRIVATE |
46 | #ifdef __APPLE_API_UNSTABLE | |
47 | ||
48 | struct thread_snapshot { | |
49 | uint32_t snapshot_magic; | |
50 | uint32_t nkern_frames; | |
51 | uint32_t nuser_frames; | |
b0d623f7 | 52 | uint64_t wait_event; |
6d2010ae | 53 | uint64_t continuation; |
b0d623f7 | 54 | uint64_t thread_id; |
6d2010ae A |
55 | uint64_t user_time; |
56 | uint64_t system_time; | |
b0d623f7 | 57 | int32_t state; |
fe8ab488 A |
58 | int32_t priority; /* static priority */ |
59 | int32_t sched_pri; /* scheduled (current) priority */ | |
60 | int32_t sched_flags; /* scheduler flags */ | |
b0d623f7 | 61 | char ss_flags; |
3e170ce0 A |
62 | char ts_qos; /* effective qos */ |
63 | char ts_rqos; /* requested qos */ | |
64 | char ts_rqos_override; /* requested qos override */ | |
fe8ab488 | 65 | char io_tier; |
3e170ce0 | 66 | char _reserved[3]; /* pad for 4 byte alignement packing */ |
fe8ab488 A |
67 | |
68 | /* | |
69 | * I/O Statistics | |
70 | * XXX: These fields must be together | |
71 | */ | |
72 | uint64_t disk_reads_count; | |
73 | uint64_t disk_reads_size; | |
74 | uint64_t disk_writes_count; | |
75 | uint64_t disk_writes_size; | |
76 | uint64_t io_priority_count[STACKSHOT_IO_NUM_PRIORITIES]; | |
77 | uint64_t io_priority_size[STACKSHOT_IO_NUM_PRIORITIES]; | |
78 | uint64_t paging_count; | |
79 | uint64_t paging_size; | |
80 | uint64_t non_paging_count; | |
81 | uint64_t non_paging_size; | |
82 | uint64_t data_count; | |
83 | uint64_t data_size; | |
84 | uint64_t metadata_count; | |
85 | uint64_t metadata_size; | |
86 | /* XXX: I/O Statistics end */ | |
87 | ||
88 | uint64_t voucher_identifier; /* obfuscated voucher identifier */ | |
89 | uint64_t total_syscalls; | |
90 | char pth_name[STACKSHOT_MAX_THREAD_NAME_SIZE]; | |
91 | ||
39037602 | 92 | } __attribute__((packed)); |
3e170ce0 | 93 | |
39037602 | 94 | /* old, non kcdata format */ |
b7266188 | 95 | struct task_snapshot { |
39037602 A |
96 | uint32_t snapshot_magic; |
97 | int32_t pid; | |
39236c6e | 98 | uint64_t uniqueid; |
6d2010ae A |
99 | uint64_t user_time_in_terminated_threads; |
100 | uint64_t system_time_in_terminated_threads; | |
39236c6e A |
101 | uint8_t shared_cache_identifier[16]; |
102 | uint64_t shared_cache_slide; | |
103 | uint32_t nloadinfos; | |
fe8ab488 A |
104 | int suspend_count; |
105 | int task_size; /* pages */ | |
106 | int faults; /* number of page faults */ | |
107 | int pageins; /* number of actual pageins */ | |
108 | int cow_faults; /* number of copy-on-write faults */ | |
39236c6e | 109 | uint32_t ss_flags; |
fe8ab488 A |
110 | uint64_t p_start_sec; /* from the bsd proc struct */ |
111 | uint64_t p_start_usec; /* from the bsd proc struct */ | |
112 | ||
113 | /* | |
114 | * We restrict ourselves to a statically defined | |
b0d623f7 A |
115 | * (current as of 2009) length for the |
116 | * p_comm string, due to scoping issues (osfmk/bsd and user/kernel | |
117 | * binary compatibility). | |
118 | */ | |
119 | char p_comm[17]; | |
39236c6e A |
120 | uint32_t was_throttled; |
121 | uint32_t did_throttle; | |
122 | uint32_t latency_qos; | |
fe8ab488 A |
123 | /* |
124 | * I/O Statistics | |
125 | * XXX: These fields must be together. | |
126 | */ | |
127 | uint64_t disk_reads_count; | |
128 | uint64_t disk_reads_size; | |
129 | uint64_t disk_writes_count; | |
130 | uint64_t disk_writes_size; | |
131 | uint64_t io_priority_count[STACKSHOT_IO_NUM_PRIORITIES]; | |
132 | uint64_t io_priority_size[STACKSHOT_IO_NUM_PRIORITIES]; | |
133 | uint64_t paging_count; | |
134 | uint64_t paging_size; | |
135 | uint64_t non_paging_count; | |
136 | uint64_t non_paging_size; | |
137 | uint64_t data_count; | |
138 | uint64_t data_size; | |
139 | uint64_t metadata_count; | |
140 | uint64_t metadata_size; | |
141 | /* XXX: I/O Statistics end */ | |
142 | ||
143 | uint32_t donating_pid_count; | |
144 | ||
b0d623f7 A |
145 | } __attribute__ ((packed)); |
146 | ||
3e170ce0 | 147 | |
3e170ce0 | 148 | |
39236c6e A |
149 | struct micro_snapshot { |
150 | uint32_t snapshot_magic; | |
151 | uint32_t ms_cpu; /* cpu number this snapshot was recorded on */ | |
152 | uint64_t ms_time; /* time at sample (seconds) */ | |
153 | uint64_t ms_time_microsecs; | |
154 | uint8_t ms_flags; | |
155 | uint16_t ms_opaque_flags; /* managed by external entity, e.g. fdrmicrod */ | |
156 | } __attribute__ ((packed)); | |
6d2010ae | 157 | |
316670eb | 158 | |
39236c6e A |
159 | |
160 | struct _dyld_cache_header | |
161 | { | |
162 | char magic[16]; // e.g. "dyld_v0 i386" | |
163 | uint32_t mappingOffset; // file offset to first dyld_cache_mapping_info | |
164 | uint32_t mappingCount; // number of dyld_cache_mapping_info entries | |
165 | uint32_t imagesOffset; // file offset to first dyld_cache_image_info | |
166 | uint32_t imagesCount; // number of dyld_cache_image_info entries | |
167 | uint64_t dyldBaseAddress; // base address of dyld when cache was built | |
168 | uint64_t codeSignatureOffset; // file offset of code signature blob | |
169 | uint64_t codeSignatureSize; // size of code signature blob (zero means to end of file) | |
170 | uint64_t slideInfoOffset; // file offset of kernel slid info | |
171 | uint64_t slideInfoSize; // size of kernel slid info | |
172 | uint64_t localSymbolsOffset; // file offset of where local symbols are stored | |
173 | uint64_t localSymbolsSize; // size of local symbols information | |
174 | uint8_t uuid[16]; // unique value for each shared cache file | |
175 | }; | |
176 | ||
39236c6e A |
177 | |
178 | enum micro_snapshot_flags { | |
179 | kInterruptRecord = 0x1, | |
180 | kTimerArmingRecord = 0x2, | |
39037602 A |
181 | kUserMode = 0x4, /* interrupted usermode, or armed by usermode */ |
182 | kIORecord = 0x8, | |
39236c6e A |
183 | }; |
184 | ||
185 | /* | |
186 | * Flags used in the following assortment of snapshots. | |
187 | */ | |
188 | enum generic_snapshot_flags { | |
189 | kUser64_p = 0x1, | |
190 | kKernel64_p = 0x2 | |
191 | }; | |
192 | ||
316670eb A |
193 | #define VM_PRESSURE_TIME_WINDOW 5 /* seconds */ |
194 | ||
b7266188 | 195 | enum { |
39037602 A |
196 | STACKSHOT_GET_DQ = 0x01, |
197 | STACKSHOT_SAVE_LOADINFO = 0x02, | |
198 | STACKSHOT_GET_GLOBAL_MEM_STATS = 0x04, | |
199 | STACKSHOT_SAVE_KEXT_LOADINFO = 0x08, | |
200 | STACKSHOT_GET_MICROSTACKSHOT = 0x10, | |
201 | STACKSHOT_GLOBAL_MICROSTACKSHOT_ENABLE = 0x20, | |
202 | STACKSHOT_GLOBAL_MICROSTACKSHOT_DISABLE = 0x40, | |
203 | STACKSHOT_SET_MICROSTACKSHOT_MARK = 0x80, | |
204 | STACKSHOT_ACTIVE_KERNEL_THREADS_ONLY = 0x100, | |
205 | STACKSHOT_GET_BOOT_PROFILE = 0x200, | |
206 | STACKSHOT_SAVE_IMP_DONATION_PIDS = 0x2000, | |
207 | STACKSHOT_SAVE_IN_KERNEL_BUFFER = 0x4000, | |
208 | STACKSHOT_RETRIEVE_EXISTING_BUFFER = 0x8000, | |
209 | STACKSHOT_KCDATA_FORMAT = 0x10000, | |
210 | STACKSHOT_ENABLE_BT_FAULTING = 0x20000, | |
211 | STACKSHOT_COLLECT_DELTA_SNAPSHOT = 0x40000, | |
212 | /* | |
213 | * STACKSHOT_TAILSPIN flips on several features aimed at minimizing the size | |
214 | * of stackshots. It is meant to be used only by the tailspin daemon. Its | |
215 | * behavior may be changed at any time to suit the needs of the tailspin | |
216 | * daemon. Seriously, if you are not the tailspin daemon, don't use this | |
217 | * flag. If you need these features, ask us to add a stable SPI for what | |
218 | * you need. That being said, the features it turns on are: | |
219 | * | |
220 | * minimize_uuids: If the set of loaded dylibs or kexts has not changed in | |
221 | * the delta period, do then not report them. | |
222 | * | |
223 | * iostats: do not include io statistics. | |
224 | * | |
225 | * trace_fp: do not include the frame pointers in stack traces. | |
226 | * | |
227 | * minimize_nonrunnables: Do not report detailed information about threads | |
228 | * which were not runnable in the delta period. | |
229 | */ | |
230 | STACKSHOT_TAILSPIN = 0x80000, | |
231 | /* | |
232 | * Kernel consumers of stackshot (via stack_snapshot_from_kernel) can ask | |
233 | * that we try to take the stackshot lock, and fail if we don't get it. | |
234 | */ | |
235 | STACKSHOT_TRYLOCK = 0x100000, | |
236 | STACKSHOT_ENABLE_UUID_FAULTING = 0x200000, | |
237 | STACKSHOT_FROM_PANIC = 0x400000, | |
238 | STACKSHOT_NO_IO_STATS = 0x800000, | |
813fb2f6 A |
239 | /* Report owners of and pointers to kernel objects that threads are blocked on */ |
240 | STACKSHOT_THREAD_WAITINFO = 0x1000000, | |
5ba3f43e A |
241 | STACKSHOT_THREAD_GROUP = 0x2000000, |
242 | STACKSHOT_SAVE_JETSAM_COALITIONS = 0x4000000, | |
243 | STACKSHOT_INSTRS_CYCLES = 0x8000000, | |
b7266188 A |
244 | }; |
245 | ||
5ba3f43e A |
246 | #define STACKSHOT_THREAD_SNAPSHOT_MAGIC 0xfeedface |
247 | #define STACKSHOT_TASK_SNAPSHOT_MAGIC 0xdecafbad | |
248 | #define STACKSHOT_MEM_AND_IO_SNAPSHOT_MAGIC 0xbfcabcde | |
249 | #define STACKSHOT_MICRO_SNAPSHOT_MAGIC 0x31c54011 | |
1c79356b | 250 | |
5ba3f43e A |
251 | #define KF_INITIALIZED (0x1) |
252 | #define KF_SERIAL_OVRD (0x2) | |
253 | #define KF_PMAPV_OVRD (0x4) | |
254 | #define KF_MATV_OVRD (0x8) | |
255 | #define KF_STACKSHOT_OVRD (0x10) | |
256 | #define KF_COMPRSV_OVRD (0x20) | |
1c79356b | 257 | |
5ba3f43e | 258 | boolean_t kern_feature_override(uint32_t fmask); |
3e170ce0 | 259 | |
5ba3f43e A |
260 | /* |
261 | * Any updates to this header should be also updated in astris as it can not | |
262 | * grab this header from the SDK. | |
263 | * | |
264 | * NOTE: DO NOT REMOVE OR CHANGE THE MEANING OF ANY FIELDS FROM THIS STRUCTURE. | |
265 | * Any modifications should add new fields at the end, bump the version number | |
266 | * and be done alongside astris and DumpPanic changes. | |
267 | */ | |
268 | struct embedded_panic_header { | |
cc8bc92a | 269 | uint32_t eph_magic; /* EMBEDDED_PANIC_MAGIC if valid */ |
5ba3f43e A |
270 | uint32_t eph_crc; /* CRC of everything following the ph_crc in the header and the contents */ |
271 | uint32_t eph_version; /* embedded_panic_header version */ | |
272 | uint64_t eph_panic_flags; /* Flags indicating any state or relevant details */ | |
273 | uint32_t eph_panic_log_offset; /* Offset of the beginning of the panic log from the beginning of the header */ | |
274 | uint32_t eph_panic_log_len; /* length of the panic log */ | |
275 | uint32_t eph_stackshot_offset; /* Offset of the beginning of the panic stackshot from the beginning of the header */ | |
276 | uint32_t eph_stackshot_len; /* length of the panic stackshot (0 if not valid ) */ | |
277 | uint32_t eph_other_log_offset; /* Offset of the other log (any logging subsequent to the stackshot) from the beginning of the header */ | |
278 | uint32_t eph_other_log_len; /* length of the other log */ | |
279 | } __attribute__((packed)); | |
1c79356b | 280 | |
5ba3f43e A |
281 | #define EMBEDDED_PANIC_HEADER_FLAG_COREDUMP_COMPLETE 0x01 |
282 | #define EMBEDDED_PANIC_HEADER_FLAG_STACKSHOT_SUCCEEDED 0x02 | |
283 | #define EMBEDDED_PANIC_HEADER_FLAG_STACKSHOT_FAILED_DEBUGGERSYNC 0x04 | |
284 | #define EMBEDDED_PANIC_HEADER_FLAG_STACKSHOT_FAILED_ERROR 0x08 | |
285 | #define EMBEDDED_PANIC_HEADER_FLAG_STACKSHOT_FAILED_INCOMPLETE 0x10 | |
286 | #define EMBEDDED_PANIC_HEADER_FLAG_STACKSHOT_FAILED_NESTED 0x20 | |
287 | #define EMBEDDED_PANIC_HEADER_FLAG_NESTED_PANIC 0x40 | |
288 | #define EMBEDDED_PANIC_HEADER_FLAG_BUTTON_RESET_PANIC 0x80 | |
289 | #define EMBEDDED_PANIC_HEADER_FLAG_COPROC_INITIATED_PANIC 0x100 | |
cc8bc92a | 290 | #define EMBEDDED_PANIC_HEADER_FLAG_COREDUMP_FAILED 0x200 |
5ba3f43e A |
291 | |
292 | #define EMBEDDED_PANIC_HEADER_CURRENT_VERSION 1 | |
293 | #define EMBEDDED_PANIC_MAGIC 0x46554E4B /* FUNK */ | |
294 | ||
295 | struct macos_panic_header { | |
cc8bc92a A |
296 | uint32_t mph_magic; /* MACOS_PANIC_MAGIC if valid */ |
297 | uint32_t mph_crc; /* CRC of everything following mph_crc in the header and the contents */ | |
298 | uint32_t mph_version; /* macos_panic_header version */ | |
299 | uint32_t mph_padding; /* unused */ | |
300 | uint64_t mph_panic_flags; /* Flags indicating any state or relevant details */ | |
301 | uint32_t mph_panic_log_offset; /* Offset of the panic log from the beginning of the header */ | |
302 | uint32_t mph_panic_log_len; /* length of the panic log */ | |
303 | uint32_t mph_stackshot_offset; /* Offset of the panic stackshot from the beginning of the header */ | |
304 | uint32_t mph_stackshot_len; /* length of the panic stackshot */ | |
305 | uint32_t mph_other_log_offset; /* Offset of the other log (any logging subsequent to the stackshot) from the beginning of the header */ | |
306 | uint32_t mph_other_log_len; /* length of the other log */ | |
307 | char mph_data[]; /* panic data -- DO NOT ACCESS THIS FIELD DIRECTLY. Use the offsets above relative to the beginning of the header */ | |
5ba3f43e | 308 | } __attribute__((packed)); |
1c79356b | 309 | |
cc8bc92a | 310 | #define MACOS_PANIC_HEADER_CURRENT_VERSION 2 |
5ba3f43e | 311 | #define MACOS_PANIC_MAGIC 0x44454544 /* DEED */ |
1c79356b | 312 | |
cc8bc92a A |
313 | #define MACOS_PANIC_HEADER_FLAG_NESTED_PANIC 0x01 |
314 | #define MACOS_PANIC_HEADER_FLAG_COPROC_INITIATED_PANIC 0x02 | |
315 | #define MACOS_PANIC_HEADER_FLAG_STACKSHOT_SUCCEEDED 0x04 | |
316 | #define MACOS_PANIC_HEADER_FLAG_STACKSHOT_DATA_COMPRESSED 0x08 | |
317 | #define MACOS_PANIC_HEADER_FLAG_STACKSHOT_FAILED_DEBUGGERSYNC 0x10 | |
318 | #define MACOS_PANIC_HEADER_FLAG_STACKSHOT_FAILED_ERROR 0x20 | |
319 | #define MACOS_PANIC_HEADER_FLAG_STACKSHOT_FAILED_INCOMPLETE 0x40 | |
320 | #define MACOS_PANIC_HEADER_FLAG_STACKSHOT_FAILED_NESTED 0x80 | |
321 | #define MACOS_PANIC_HEADER_FLAG_COREDUMP_COMPLETE 0x100 | |
322 | #define MACOS_PANIC_HEADER_FLAG_COREDUMP_FAILED 0x200 | |
1c79356b | 323 | |
5ba3f43e A |
324 | #endif /* __APPLE_API_UNSTABLE */ |
325 | #endif /* __APPLE_API_PRIVATE */ | |
9bccf70c | 326 | |
5ba3f43e | 327 | #ifdef KERNEL |
91447636 | 328 | |
5ba3f43e | 329 | __BEGIN_DECLS |
2d21ac55 | 330 | |
5ba3f43e | 331 | extern void panic(const char *string, ...) __printflike(1,2); |
1c79356b | 332 | |
5ba3f43e | 333 | __END_DECLS |
9bccf70c | 334 | |
5ba3f43e | 335 | #endif /* KERNEL */ |
91447636 | 336 | |
5ba3f43e | 337 | #ifdef KERNEL_PRIVATE |
b0d623f7 A |
338 | #if DEBUG |
339 | /* | |
340 | * For the DEBUG kernel, support the following: | |
341 | * sysctl -w debug.kprint_syscall=<syscall_mask> | |
342 | * sysctl -w debug.kprint_syscall_process=<p_comm> | |
343 | * <syscall_mask> should be an OR of the masks below | |
344 | * for UNIX, MACH, MDEP, or IPC. This debugging aid | |
345 | * assumes the task/process is locked/wired and will | |
346 | * not go away during evaluation. If no process is | |
347 | * specified, all processes will be traced | |
348 | */ | |
349 | extern int debug_kprint_syscall; | |
350 | extern int debug_kprint_current_process(const char **namep); | |
351 | #define DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, namep) \ | |
352 | ( (debug_kprint_syscall & (mask)) && debug_kprint_current_process(namep) ) | |
353 | #define DEBUG_KPRINT_SYSCALL_MASK(mask, fmt, args...) do { \ | |
354 | const char *dks_name = NULL; \ | |
355 | if (DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, &dks_name)) { \ | |
356 | kprintf("[%s%s%p]" fmt, dks_name ? dks_name : "", \ | |
357 | dks_name ? "@" : "", current_thread(), args); \ | |
358 | } \ | |
359 | } while (0) | |
360 | #else /* !DEBUG */ | |
361 | #define DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, namep) (0) | |
316670eb | 362 | #define DEBUG_KPRINT_SYSCALL_MASK(mask, fmt, args...) do { } while (0) /* kprintf(fmt, args) */ |
b0d623f7 A |
363 | #endif /* !DEBUG */ |
364 | ||
365 | enum { | |
366 | DEBUG_KPRINT_SYSCALL_UNIX_MASK = 1 << 0, | |
367 | DEBUG_KPRINT_SYSCALL_MACH_MASK = 1 << 1, | |
368 | DEBUG_KPRINT_SYSCALL_MDEP_MASK = 1 << 2, | |
369 | DEBUG_KPRINT_SYSCALL_IPC_MASK = 1 << 3 | |
370 | }; | |
371 | ||
372 | #define DEBUG_KPRINT_SYSCALL_PREDICATE(mask) \ | |
373 | DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, NULL) | |
374 | #define DEBUG_KPRINT_SYSCALL_UNIX(fmt, args...) \ | |
375 | DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_UNIX_MASK,fmt,args) | |
376 | #define DEBUG_KPRINT_SYSCALL_MACH(fmt, args...) \ | |
377 | DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_MACH_MASK,fmt,args) | |
378 | #define DEBUG_KPRINT_SYSCALL_MDEP(fmt, args...) \ | |
379 | DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_MDEP_MASK,fmt,args) | |
380 | #define DEBUG_KPRINT_SYSCALL_IPC(fmt, args...) \ | |
381 | DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_IPC_MASK,fmt,args) | |
593a1d5f | 382 | |
5ba3f43e A |
383 | /* Debug boot-args */ |
384 | #define DB_HALT 0x1 | |
385 | //#define DB_PRT 0x2 -- obsolete | |
386 | #define DB_NMI 0x4 | |
387 | #define DB_KPRT 0x8 | |
388 | #define DB_KDB 0x10 | |
389 | #define DB_ARP 0x40 | |
390 | #define DB_KDP_BP_DIS 0x80 | |
391 | //#define DB_LOG_PI_SCRN 0x100 -- obsolete | |
392 | #define DB_KDP_GETC_ENA 0x200 | |
39037602 | 393 | |
5ba3f43e A |
394 | #define DB_KERN_DUMP_ON_PANIC 0x400 /* Trigger core dump on panic*/ |
395 | #define DB_KERN_DUMP_ON_NMI 0x800 /* Trigger core dump on NMI */ | |
396 | #define DB_DBG_POST_CORE 0x1000 /*Wait in debugger after NMI core */ | |
397 | #define DB_PANICLOG_DUMP 0x2000 /* Send paniclog on panic,not core*/ | |
398 | #define DB_REBOOT_POST_CORE 0x4000 /* Attempt to reboot after | |
399 | * post-panic crashdump/paniclog | |
400 | * dump. | |
401 | */ | |
402 | #define DB_NMI_BTN_ENA 0x8000 /* Enable button to directly trigger NMI */ | |
403 | #define DB_PRT_KDEBUG 0x10000 /* kprintf KDEBUG traces */ | |
404 | #define DB_DISABLE_LOCAL_CORE 0x20000 /* ignore local kernel core dump support */ | |
405 | #define DB_DISABLE_GZIP_CORE 0x40000 /* don't gzip kernel core dumps */ | |
39037602 A |
406 | |
407 | /* | |
5ba3f43e | 408 | * Values for a 64-bit mask that's passed to the debugger. |
39037602 | 409 | */ |
5ba3f43e A |
410 | #define DEBUGGER_OPTION_NONE 0x0ULL |
411 | #define DEBUGGER_OPTION_PANICLOGANDREBOOT 0x1ULL /* capture a panic log and then reboot immediately */ | |
412 | #define DEBUGGER_OPTION_RECURPANIC_ENTRY 0x2ULL | |
413 | #define DEBUGGER_OPTION_RECURPANIC_PRELOG 0x4ULL | |
414 | #define DEBUGGER_OPTION_RECURPANIC_POSTLOG 0x8ULL | |
415 | #define DEBUGGER_OPTION_RECURPANIC_POSTCORE 0x10ULL | |
416 | #define DEBUGGER_OPTION_INITPROC_PANIC 0x20ULL | |
417 | #define DEBUGGER_OPTION_COPROC_INITIATED_PANIC 0x40ULL /* panic initiated by a co-processor */ | |
418 | #define DEBUGGER_OPTION_SKIP_LOCAL_COREDUMP 0x80ULL /* don't try to save local coredumps for this panic */ | |
39037602 | 419 | |
5ba3f43e A |
420 | __BEGIN_DECLS |
421 | ||
422 | #define panic_plain(ex, ...) (panic)(ex, ## __VA_ARGS__) | |
423 | ||
424 | #define __STRINGIFY(x) #x | |
425 | #define LINE_NUMBER(x) __STRINGIFY(x) | |
426 | #define PANIC_LOCATION __FILE__ ":" LINE_NUMBER(__LINE__) | |
427 | ||
428 | #if CONFIG_EMBEDDED | |
429 | #define panic(ex, ...) (panic)(# ex, ## __VA_ARGS__) | |
430 | #else | |
431 | #define panic(ex, ...) (panic)(# ex "@" PANIC_LOCATION, ## __VA_ARGS__) | |
432 | #endif | |
433 | ||
434 | void panic_context(unsigned int reason, void *ctx, const char *string, ...); | |
435 | void panic_with_options(unsigned int reason, void *ctx, uint64_t debugger_options_mask, const char *str, ...); | |
436 | void Debugger(const char * message); | |
437 | void populate_model_name(char *); | |
438 | ||
439 | unsigned panic_active(void); | |
440 | ||
441 | __END_DECLS | |
442 | ||
443 | #endif /* KERNEL_PRIVATE */ | |
444 | ||
445 | #if XNU_KERNEL_PRIVATE | |
39037602 A |
446 | |
447 | boolean_t oslog_is_safe(void); | |
5ba3f43e A |
448 | boolean_t debug_mode_active(void); |
449 | boolean_t stackshot_active(void); | |
cc8bc92a | 450 | void panic_stackshot_reset_state(void); |
39037602 A |
451 | |
452 | /* | |
453 | * @function stack_snapshot_from_kernel | |
454 | * | |
455 | * @abstract Stackshot function for kernel consumers who have their own buffer. | |
456 | * | |
457 | * @param pid the PID to be traced or -1 for the whole system | |
458 | * @param buf a pointer to the buffer where the stackshot should be written | |
459 | * @param size the size of the buffer | |
460 | * @param flags flags to be passed to the stackshot | |
461 | * @param delta_since_timestamp start time for delta period | |
462 | * @bytes_traced a pointer to be filled with the length of the stackshot | |
463 | * | |
464 | */ | |
465 | #ifdef __cplusplus | |
466 | extern "C" { | |
467 | #endif | |
468 | kern_return_t | |
469 | stack_snapshot_from_kernel(int pid, void *buf, uint32_t size, uint32_t flags, | |
470 | uint64_t delta_since_timestamp, unsigned *bytes_traced); | |
471 | #ifdef __cplusplus | |
472 | } | |
473 | #endif | |
474 | ||
5ba3f43e A |
475 | #if !CONFIG_EMBEDDED |
476 | extern char debug_buf[]; | |
477 | extern boolean_t coprocessor_paniclog_flush; | |
cc8bc92a | 478 | extern boolean_t extended_debug_log_enabled;; |
5ba3f43e | 479 | #endif /* !CONFIG_EMBEDDED */ |
39037602 | 480 | |
5ba3f43e | 481 | extern char *debug_buf_base; |
39037602 | 482 | |
5ba3f43e A |
483 | extern char kernel_uuid_string[]; |
484 | extern char panic_disk_error_description[]; | |
485 | extern size_t panic_disk_error_description_size; | |
fe8ab488 | 486 | |
5ba3f43e A |
487 | extern unsigned char *kernel_uuid; |
488 | extern unsigned int debug_boot_arg; | |
cc8bc92a A |
489 | #if DEVELOPMENT || DEBUG |
490 | extern boolean_t debug_boot_arg_inited; | |
491 | #endif | |
b0d623f7 | 492 | |
5ba3f43e A |
493 | #ifdef __cplusplus |
494 | extern "C" { | |
495 | #endif | |
39037602 | 496 | |
5ba3f43e | 497 | extern boolean_t doprnt_hide_pointers; |
39037602 | 498 | |
5ba3f43e A |
499 | #ifdef __cplusplus |
500 | } | |
b0d623f7 A |
501 | #endif |
502 | ||
5ba3f43e A |
503 | extern unsigned int halt_in_debugger; /* pending halt in debugger after boot */ |
504 | extern unsigned int current_debugger; | |
505 | #define NO_CUR_DB 0x0 | |
506 | #define KDP_CUR_DB 0x1 | |
507 | ||
508 | extern unsigned int active_debugger; | |
509 | extern unsigned int kernel_debugger_entry_count; | |
510 | ||
511 | extern unsigned int panicDebugging; | |
512 | extern unsigned int kdebug_serial; | |
513 | ||
514 | extern const char *debugger_panic_str; | |
515 | ||
516 | extern char *debug_buf_ptr; | |
5ba3f43e | 517 | extern unsigned int debug_buf_size; |
2d21ac55 | 518 | |
5ba3f43e A |
519 | extern void debug_log_init(void); |
520 | extern void debug_putc(char); | |
fe8ab488 | 521 | |
5ba3f43e A |
522 | extern void panic_init(void); |
523 | ||
524 | #if defined (__x86_64__) | |
cc8bc92a A |
525 | extern void extended_debug_log_init(void); |
526 | ||
5ba3f43e A |
527 | int packA(char *inbuf, uint32_t length, uint32_t buflen); |
528 | void unpackA(char *inbuf, uint32_t length); | |
529 | ||
530 | #if DEVELOPMENT || DEBUG | |
531 | #define PANIC_STACKSHOT_BUFSIZE (1024 * 1024) | |
532 | ||
533 | extern uintptr_t panic_stackshot_buf; | |
534 | extern size_t panic_stackshot_len; | |
535 | #endif /* DEVELOPMENT || DEBUG */ | |
536 | #endif /* defined (__x86_64__) */ | |
537 | ||
538 | void SavePanicInfo(const char *message, uint64_t panic_options); | |
539 | void paniclog_flush(void); | |
540 | void panic_display_system_configuration(boolean_t launchd_exit); | |
541 | void panic_display_zprint(void); | |
542 | void panic_display_kernel_aslr(void); | |
543 | void panic_display_hibb(void); | |
544 | void panic_display_model_name(void); | |
545 | void panic_display_kernel_uuid(void); | |
546 | #if CONFIG_ZLEAKS | |
547 | void panic_display_ztrace(void); | |
548 | #endif /* CONFIG_ZLEAKS */ | |
549 | #if CONFIG_ECC_LOGGING | |
550 | void panic_display_ecc_errors(void); | |
551 | #endif /* CONFIG_ECC_LOGGING */ | |
5ba3f43e A |
552 | |
553 | /* | |
554 | * @var not_in_kdp | |
555 | * | |
556 | * @abstract True if we're in normal kernel operation, False if we're in a | |
557 | * single-core debugger context. | |
558 | */ | |
559 | extern unsigned int not_in_kdp; | |
560 | ||
561 | #define DEBUGGER_NO_CPU -1 | |
562 | ||
563 | typedef enum { | |
564 | DBOP_NONE, | |
565 | DBOP_STACKSHOT, | |
566 | DBOP_RESET_PGO_COUNTERS, | |
567 | DBOP_PANIC, | |
568 | DBOP_DEBUGGER, | |
569 | DBOP_BREAKPOINT, | |
570 | } debugger_op; | |
571 | ||
572 | kern_return_t DebuggerTrapWithState(debugger_op db_op, const char *db_message, const char *db_panic_str, va_list *db_panic_args, | |
573 | uint64_t db_panic_options, boolean_t db_proceed_on_sync_failure, unsigned long db_panic_caller); | |
574 | void handle_debugger_trap(unsigned int exception, unsigned int code, unsigned int subcode, void *state); | |
575 | ||
576 | void DebuggerWithContext(unsigned int reason, void *ctx, const char *message, uint64_t debugger_options_mask); | |
39037602 | 577 | |
39037602 A |
578 | #if DEBUG || DEVELOPMENT |
579 | /* leak pointer scan definitions */ | |
580 | ||
581 | enum | |
582 | { | |
583 | kInstanceFlagAddress = 0x01UL, | |
584 | kInstanceFlagReferenced = 0x02UL, | |
585 | kInstanceFlags = 0x03UL | |
586 | }; | |
587 | ||
588 | #define INSTANCE_GET(x) ((x) & ~kInstanceFlags) | |
589 | #define INSTANCE_PUT(x) ((x) ^ ~kInstanceFlags) | |
590 | ||
591 | typedef void (*leak_site_proc)(void * refCon, uint32_t siteCount, uint32_t zoneSize, | |
592 | uintptr_t * backtrace, uint32_t btCount); | |
593 | ||
5ba3f43e A |
594 | #ifdef __cplusplus |
595 | extern "C" { | |
596 | #endif | |
597 | ||
39037602 A |
598 | extern kern_return_t |
599 | zone_leaks(const char * zoneName, uint32_t nameLen, leak_site_proc proc, void * refCon); | |
600 | ||
601 | extern void | |
602 | zone_leaks_scan(uintptr_t * instances, uint32_t count, uint32_t zoneSize, uint32_t * found); | |
603 | ||
5ba3f43e A |
604 | #ifdef __cplusplus |
605 | } | |
606 | #endif | |
607 | ||
813fb2f6 A |
608 | extern boolean_t |
609 | kdp_is_in_zone(void *addr, const char *zone_name); | |
610 | ||
39037602 A |
611 | #endif /* DEBUG || DEVELOPMENT */ |
612 | #endif /* XNU_KERNEL_PRIVATE */ | |
613 | ||
1c79356b | 614 | #endif /* _KERN_DEBUG_H_ */ |