2 * Copyright (c) 2000-2007 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@
29 #ifndef _KERN_DEBUG_H_
30 #define _KERN_DEBUG_H_
32 #include <sys/cdefs.h>
35 #ifdef __APPLE_API_PRIVATE
36 #ifdef __APPLE_API_UNSTABLE
38 struct thread_snapshot
{
39 uint32_t snapshot_magic
;
40 uint32_t nkern_frames
;
41 uint32_t nuser_frames
;
43 uint64_t continuation
;
48 int32_t sched_pri
; // scheduled (current) priority
49 int32_t sched_flags
; // scheduler flags
51 } __attribute__ ((packed
));
53 struct task_snapshot
{
54 uint32_t snapshot_magic
;
57 uint64_t user_time_in_terminated_threads
;
58 uint64_t system_time_in_terminated_threads
;
60 int task_size
; // pages
61 int faults
; // number of page faults
62 int pageins
; // number of actual pageins
63 int cow_faults
; // number of copy-on-write faults
65 /* We restrict ourselves to a statically defined
66 * (current as of 2009) length for the
67 * p_comm string, due to scoping issues (osfmk/bsd and user/kernel
68 * binary compatibility).
71 } __attribute__ ((packed
));
74 struct mem_and_io_snapshot
{
75 uint32_t snapshot_magic
;
77 uint32_t active_pages
;
78 uint32_t inactive_pages
;
79 uint32_t purgeable_pages
;
81 uint32_t speculative_pages
;
82 uint32_t throttled_pages
;
83 int busy_buffer_count
;
84 uint32_t pages_wanted
;
85 uint32_t pages_reclaimed
;
86 uint8_t pages_wanted_reclaimed_valid
; // did mach_vm_pressure_monitor succeed?
87 } __attribute__((packed
));
93 kHasDispatchSerial
= 0x4,
94 kTerminatedSnapshot
= 0x8,
95 kPidSuspended
= 0x10, // true for suspended task
96 kFrozen
= 0x20 // true for hibernated task (along with pidsuspended)
99 #define VM_PRESSURE_TIME_WINDOW 5 /* seconds */
102 STACKSHOT_GET_DQ
= 0x1,
103 STACKSHOT_SAVE_LOADINFO
= 0x2,
104 STACKSHOT_GET_GLOBAL_MEM_STATS
= 0x4
107 #define STACKSHOT_THREAD_SNAPSHOT_MAGIC 0xfeedface
108 #define STACKSHOT_TASK_SNAPSHOT_MAGIC 0xdecafbad
109 #define STACKSHOT_MEM_AND_IO_SNAPSHOT_MAGIC 0xbfcabcde
111 #endif /* __APPLE_API_UNSTABLE */
112 #endif /* __APPLE_API_PRIVATE */
114 #ifdef KERNEL_PRIVATE
116 extern unsigned int systemLogDiags
;
117 extern char debug_buf
[];
118 extern unsigned int debug_boot_arg
;
119 extern char kernel_uuid
[];
121 #ifdef MACH_KERNEL_PRIVATE
123 extern unsigned int halt_in_debugger
;
125 extern unsigned int switch_debugger
;
127 extern unsigned int current_debugger
;
128 #define NO_CUR_DB 0x0
129 #define KDP_CUR_DB 0x1
130 #define KDB_CUR_DB 0x2
132 extern unsigned int active_debugger
;
133 extern unsigned int debug_mode
;
134 extern unsigned int disable_debug_output
;
136 extern unsigned int panicDebugging
;
137 extern unsigned int logPanicDataToScreen
;
139 extern int db_run_mode
;
141 /* modes the system may be running in */
145 #define STEP_RETURN 2
147 #define STEP_CONTINUE 4
148 #define STEP_INVISIBLE 5
150 #define STEP_TRACE 7 /* Show all calls to functions and returns */
152 extern const char *panicstr
;
153 extern volatile unsigned int nestedpanic
;
154 extern int unsigned long panic_caller
;
156 extern char *debug_buf_ptr
;
157 extern unsigned int debug_buf_size
;
159 extern void debug_log_init(void);
160 extern void debug_putc(char);
162 extern void panic_init(void);
164 int packA(char *inbuf
, uint32_t length
, uint32_t buflen
);
165 void unpackA(char *inbuf
, uint32_t length
);
167 void panic_display_system_configuration(void);
168 void panic_display_zprint(void);
170 void panic_display_ztrace(void);
171 #endif /* CONFIG_ZLEAKS */
172 #endif /* MACH_KERNEL_PRIVATE */
181 #define DB_KDP_BP_DIS 0x80
182 #define DB_LOG_PI_SCRN 0x100
183 #define DB_KDP_GETC_ENA 0x200
185 #define DB_KERN_DUMP_ON_PANIC 0x400 /* Trigger core dump on panic*/
186 #define DB_KERN_DUMP_ON_NMI 0x800 /* Trigger core dump on NMI */
187 #define DB_DBG_POST_CORE 0x1000 /*Wait in debugger after NMI core */
188 #define DB_PANICLOG_DUMP 0x2000 /* Send paniclog on panic,not core*/
189 #define DB_REBOOT_POST_CORE 0x4000 /* Attempt to reboot after
190 * post-panic crashdump/paniclog
196 * For the DEBUG kernel, support the following:
197 * sysctl -w debug.kprint_syscall=<syscall_mask>
198 * sysctl -w debug.kprint_syscall_process=<p_comm>
199 * <syscall_mask> should be an OR of the masks below
200 * for UNIX, MACH, MDEP, or IPC. This debugging aid
201 * assumes the task/process is locked/wired and will
202 * not go away during evaluation. If no process is
203 * specified, all processes will be traced
205 extern int debug_kprint_syscall
;
206 extern int debug_kprint_current_process(const char **namep
);
207 #define DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, namep) \
208 ( (debug_kprint_syscall & (mask)) && debug_kprint_current_process(namep) )
209 #define DEBUG_KPRINT_SYSCALL_MASK(mask, fmt, args...) do { \
210 const char *dks_name = NULL; \
211 if (DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, &dks_name)) { \
212 kprintf("[%s%s%p]" fmt, dks_name ? dks_name : "", \
213 dks_name ? "@" : "", current_thread(), args); \
217 #define DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, namep) (0)
218 #define DEBUG_KPRINT_SYSCALL_MASK(mask, fmt, args...) do { } while (0) /* kprintf(fmt, args) */
222 DEBUG_KPRINT_SYSCALL_UNIX_MASK
= 1 << 0,
223 DEBUG_KPRINT_SYSCALL_MACH_MASK
= 1 << 1,
224 DEBUG_KPRINT_SYSCALL_MDEP_MASK
= 1 << 2,
225 DEBUG_KPRINT_SYSCALL_IPC_MASK
= 1 << 3
228 #define DEBUG_KPRINT_SYSCALL_PREDICATE(mask) \
229 DEBUG_KPRINT_SYSCALL_PREDICATE_INTERNAL(mask, NULL)
230 #define DEBUG_KPRINT_SYSCALL_UNIX(fmt, args...) \
231 DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_UNIX_MASK,fmt,args)
232 #define DEBUG_KPRINT_SYSCALL_MACH(fmt, args...) \
233 DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_MACH_MASK,fmt,args)
234 #define DEBUG_KPRINT_SYSCALL_MDEP(fmt, args...) \
235 DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_MDEP_MASK,fmt,args)
236 #define DEBUG_KPRINT_SYSCALL_IPC(fmt, args...) \
237 DEBUG_KPRINT_SYSCALL_MASK(DEBUG_KPRINT_SYSCALL_IPC_MASK,fmt,args)
239 #endif /* KERNEL_PRIVATE */
243 extern void panic(const char *string
, ...) __printflike(1,2);
246 void _consume_panic_args(int, ...);
247 void panic_context(unsigned int reason
, void *ctx
, const char *string
, ...);
250 #if CONFIG_NO_PANIC_STRINGS
252 #define panic_plain(x, ...) _consume_panic_args( 0, ## __VA_ARGS__ )
253 #define panic(x, ...) _consume_panic_args( 0, ## __VA_ARGS__ )
255 #define panic_plain(...) (panic)((char *)0)
256 #define panic(...) (panic)((char *)0)
258 #else /* CONFIGS_NO_PANIC_STRINGS */
259 #define panic_plain(ex, ...) \
260 (panic)(ex, ## __VA_ARGS__)
261 #define __STRINGIFY(x) #x
262 #define LINE_NUMBER(x) __STRINGIFY(x)
263 #define PANIC_LOCATION __FILE__ ":" LINE_NUMBER(__LINE__)
264 #define panic(ex, ...) \
265 (panic)(# ex "@" PANIC_LOCATION, ## __VA_ARGS__)
266 #endif /* CONFIGS_NO_PANIC_STRINGS */
268 void populate_model_name(char *);
269 unsigned panic_active(void);
272 #endif /* _KERN_DEBUG_H_ */