| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 1 | #ifndef _KDBPRIVATE_H | 
|  | 2 | #define _KDBPRIVATE_H | 
|  | 3 |  | 
|  | 4 | /* | 
|  | 5 | * Kernel Debugger Architecture Independent Private Headers | 
|  | 6 | * | 
|  | 7 | * This file is subject to the terms and conditions of the GNU General Public | 
|  | 8 | * License.  See the file "COPYING" in the main directory of this archive | 
|  | 9 | * for more details. | 
|  | 10 | * | 
|  | 11 | * Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved. | 
|  | 12 | * Copyright (c) 2009 Wind River Systems, Inc.  All Rights Reserved. | 
|  | 13 | */ | 
|  | 14 |  | 
|  | 15 | #include <linux/kgdb.h> | 
|  | 16 | #include "../debug_core.h" | 
|  | 17 |  | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 18 | /* Kernel Debugger Command codes.  Must not overlap with error codes. */ | 
|  | 19 | #define KDB_CMD_GO	(-1001) | 
|  | 20 | #define KDB_CMD_CPU	(-1002) | 
|  | 21 | #define KDB_CMD_SS	(-1003) | 
|  | 22 | #define KDB_CMD_SSB	(-1004) | 
|  | 23 | #define KDB_CMD_KGDB (-1005) | 
|  | 24 | #define KDB_CMD_KGDB2 (-1006) | 
|  | 25 |  | 
|  | 26 | /* Internal debug flags */ | 
|  | 27 | #define KDB_DEBUG_FLAG_BP	0x0002	/* Breakpoint subsystem debug */ | 
|  | 28 | #define KDB_DEBUG_FLAG_BB_SUMM	0x0004	/* Basic block analysis, summary only */ | 
|  | 29 | #define KDB_DEBUG_FLAG_AR	0x0008	/* Activation record, generic */ | 
|  | 30 | #define KDB_DEBUG_FLAG_ARA	0x0010	/* Activation record, arch specific */ | 
|  | 31 | #define KDB_DEBUG_FLAG_BB	0x0020	/* All basic block analysis */ | 
|  | 32 | #define KDB_DEBUG_FLAG_STATE	0x0040	/* State flags */ | 
|  | 33 | #define KDB_DEBUG_FLAG_MASK	0xffff	/* All debug flags */ | 
|  | 34 | #define KDB_DEBUG_FLAG_SHIFT	16	/* Shift factor for dbflags */ | 
|  | 35 |  | 
|  | 36 | #define KDB_DEBUG(flag)	(kdb_flags & \ | 
|  | 37 | (KDB_DEBUG_FLAG_##flag << KDB_DEBUG_FLAG_SHIFT)) | 
|  | 38 | #define KDB_DEBUG_STATE(text, value) if (KDB_DEBUG(STATE)) \ | 
|  | 39 | kdb_print_state(text, value) | 
|  | 40 |  | 
|  | 41 | #if BITS_PER_LONG == 32 | 
|  | 42 |  | 
|  | 43 | #define KDB_PLATFORM_ENV	"BYTESPERWORD=4" | 
|  | 44 |  | 
|  | 45 | #define kdb_machreg_fmt		"0x%lx" | 
|  | 46 | #define kdb_machreg_fmt0	"0x%08lx" | 
|  | 47 | #define kdb_bfd_vma_fmt		"0x%lx" | 
|  | 48 | #define kdb_bfd_vma_fmt0	"0x%08lx" | 
|  | 49 | #define kdb_elfw_addr_fmt	"0x%x" | 
|  | 50 | #define kdb_elfw_addr_fmt0	"0x%08x" | 
|  | 51 | #define kdb_f_count_fmt		"%d" | 
|  | 52 |  | 
|  | 53 | #elif BITS_PER_LONG == 64 | 
|  | 54 |  | 
|  | 55 | #define KDB_PLATFORM_ENV	"BYTESPERWORD=8" | 
|  | 56 |  | 
|  | 57 | #define kdb_machreg_fmt		"0x%lx" | 
|  | 58 | #define kdb_machreg_fmt0	"0x%016lx" | 
|  | 59 | #define kdb_bfd_vma_fmt		"0x%lx" | 
|  | 60 | #define kdb_bfd_vma_fmt0	"0x%016lx" | 
|  | 61 | #define kdb_elfw_addr_fmt	"0x%x" | 
|  | 62 | #define kdb_elfw_addr_fmt0	"0x%016x" | 
|  | 63 | #define kdb_f_count_fmt		"%ld" | 
|  | 64 |  | 
|  | 65 | #endif | 
|  | 66 |  | 
|  | 67 | /* | 
|  | 68 | * KDB_MAXBPT describes the total number of breakpoints | 
|  | 69 | * supported by this architecure. | 
|  | 70 | */ | 
|  | 71 | #define KDB_MAXBPT	16 | 
|  | 72 |  | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 73 | /* Symbol table format returned by kallsyms. */ | 
|  | 74 | typedef struct __ksymtab { | 
|  | 75 | unsigned long value;	/* Address of symbol */ | 
|  | 76 | const char *mod_name;	/* Module containing symbol or | 
|  | 77 | * "kernel" */ | 
|  | 78 | unsigned long mod_start; | 
|  | 79 | unsigned long mod_end; | 
|  | 80 | const char *sec_name;	/* Section containing symbol */ | 
|  | 81 | unsigned long sec_start; | 
|  | 82 | unsigned long sec_end; | 
|  | 83 | const char *sym_name;	/* Full symbol name, including | 
|  | 84 | * any version */ | 
|  | 85 | unsigned long sym_start; | 
|  | 86 | unsigned long sym_end; | 
|  | 87 | } kdb_symtab_t; | 
|  | 88 | extern int kallsyms_symbol_next(char *prefix_name, int flag); | 
|  | 89 | extern int kallsyms_symbol_complete(char *prefix_name, int max_len); | 
|  | 90 |  | 
|  | 91 | /* Exported Symbols for kernel loadable modules to use. */ | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 92 | extern int kdb_getarea_size(void *, unsigned long, size_t); | 
|  | 93 | extern int kdb_putarea_size(unsigned long, void *, size_t); | 
|  | 94 |  | 
|  | 95 | /* | 
|  | 96 | * Like get_user and put_user, kdb_getarea and kdb_putarea take variable | 
|  | 97 | * names, not pointers.  The underlying *_size functions take pointers. | 
|  | 98 | */ | 
|  | 99 | #define kdb_getarea(x, addr) kdb_getarea_size(&(x), addr, sizeof((x))) | 
|  | 100 | #define kdb_putarea(addr, x) kdb_putarea_size(addr, &(x), sizeof((x))) | 
|  | 101 |  | 
|  | 102 | extern int kdb_getphysword(unsigned long *word, | 
|  | 103 | unsigned long addr, size_t size); | 
|  | 104 | extern int kdb_getword(unsigned long *, unsigned long, size_t); | 
|  | 105 | extern int kdb_putword(unsigned long, unsigned long, size_t); | 
|  | 106 |  | 
|  | 107 | extern int kdbgetularg(const char *, unsigned long *); | 
| Jason Wessel | 91b152a | 2010-08-23 09:20:14 -0500 | [diff] [blame] | 108 | extern int kdbgetu64arg(const char *, u64 *); | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 109 | extern char *kdbgetenv(const char *); | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 110 | extern int kdbgetaddrarg(int, const char **, int*, unsigned long *, | 
|  | 111 | long *, char **); | 
|  | 112 | extern int kdbgetsymval(const char *, kdb_symtab_t *); | 
|  | 113 | extern int kdbnearsym(unsigned long, kdb_symtab_t *); | 
|  | 114 | extern void kdbnearsym_cleanup(void); | 
|  | 115 | extern char *kdb_strdup(const char *str, gfp_t type); | 
|  | 116 | extern void kdb_symbol_print(unsigned long, const kdb_symtab_t *, unsigned int); | 
|  | 117 |  | 
|  | 118 | /* Routine for debugging the debugger state. */ | 
|  | 119 | extern void kdb_print_state(const char *, int); | 
|  | 120 |  | 
|  | 121 | extern int kdb_state; | 
|  | 122 | #define KDB_STATE_KDB		0x00000001	/* Cpu is inside kdb */ | 
|  | 123 | #define KDB_STATE_LEAVING	0x00000002	/* Cpu is leaving kdb */ | 
|  | 124 | #define KDB_STATE_CMD		0x00000004	/* Running a kdb command */ | 
|  | 125 | #define KDB_STATE_KDB_CONTROL	0x00000008	/* This cpu is under | 
|  | 126 | * kdb control */ | 
|  | 127 | #define KDB_STATE_HOLD_CPU	0x00000010	/* Hold this cpu inside kdb */ | 
|  | 128 | #define KDB_STATE_DOING_SS	0x00000020	/* Doing ss command */ | 
|  | 129 | #define KDB_STATE_DOING_SSB	0x00000040	/* Doing ssb command, | 
|  | 130 | * DOING_SS is also set */ | 
|  | 131 | #define KDB_STATE_SSBPT		0x00000080	/* Install breakpoint | 
|  | 132 | * after one ss, independent of | 
|  | 133 | * DOING_SS */ | 
|  | 134 | #define KDB_STATE_REENTRY	0x00000100	/* Valid re-entry into kdb */ | 
|  | 135 | #define KDB_STATE_SUPPRESS	0x00000200	/* Suppress error messages */ | 
|  | 136 | #define KDB_STATE_PAGER		0x00000400	/* pager is available */ | 
|  | 137 | #define KDB_STATE_GO_SWITCH	0x00000800	/* go is switching | 
|  | 138 | * back to initial cpu */ | 
|  | 139 | #define KDB_STATE_PRINTF_LOCK	0x00001000	/* Holds kdb_printf lock */ | 
|  | 140 | #define KDB_STATE_WAIT_IPI	0x00002000	/* Waiting for kdb_ipi() NMI */ | 
|  | 141 | #define KDB_STATE_RECURSE	0x00004000	/* Recursive entry to kdb */ | 
|  | 142 | #define KDB_STATE_IP_ADJUSTED	0x00008000	/* Restart IP has been | 
|  | 143 | * adjusted */ | 
|  | 144 | #define KDB_STATE_GO1		0x00010000	/* go only releases one cpu */ | 
|  | 145 | #define KDB_STATE_KEYBOARD	0x00020000	/* kdb entered via | 
|  | 146 | * keyboard on this cpu */ | 
|  | 147 | #define KDB_STATE_KEXEC		0x00040000	/* kexec issued */ | 
|  | 148 | #define KDB_STATE_DOING_KGDB	0x00080000	/* kgdb enter now issued */ | 
|  | 149 | #define KDB_STATE_DOING_KGDB2	0x00100000	/* kgdb enter now issued */ | 
|  | 150 | #define KDB_STATE_KGDB_TRANS	0x00200000	/* Transition to kgdb */ | 
|  | 151 | #define KDB_STATE_ARCH		0xff000000	/* Reserved for arch | 
|  | 152 | * specific use */ | 
|  | 153 |  | 
|  | 154 | #define KDB_STATE(flag) (kdb_state & KDB_STATE_##flag) | 
|  | 155 | #define KDB_STATE_SET(flag) ((void)(kdb_state |= KDB_STATE_##flag)) | 
|  | 156 | #define KDB_STATE_CLEAR(flag) ((void)(kdb_state &= ~KDB_STATE_##flag)) | 
|  | 157 |  | 
|  | 158 | extern int kdb_nextline; /* Current number of lines displayed */ | 
|  | 159 |  | 
|  | 160 | typedef struct _kdb_bp { | 
|  | 161 | unsigned long	bp_addr;	/* Address breakpoint is present at */ | 
|  | 162 | unsigned int	bp_free:1;	/* This entry is available */ | 
|  | 163 | unsigned int	bp_enabled:1;	/* Breakpoint is active in register */ | 
|  | 164 | unsigned int	bp_type:4;	/* Uses hardware register */ | 
|  | 165 | unsigned int	bp_installed:1;	/* Breakpoint is installed */ | 
|  | 166 | unsigned int	bp_delay:1;	/* Do delayed bp handling */ | 
|  | 167 | unsigned int	bp_delayed:1;	/* Delayed breakpoint */ | 
|  | 168 | unsigned int	bph_length;	/* HW break length */ | 
|  | 169 | } kdb_bp_t; | 
|  | 170 |  | 
|  | 171 | #ifdef CONFIG_KGDB_KDB | 
|  | 172 | extern kdb_bp_t kdb_breakpoints[/* KDB_MAXBPT */]; | 
|  | 173 |  | 
|  | 174 | /* The KDB shell command table */ | 
|  | 175 | typedef struct _kdbtab { | 
|  | 176 | char    *cmd_name;		/* Command name */ | 
|  | 177 | kdb_func_t cmd_func;		/* Function to execute command */ | 
|  | 178 | char    *cmd_usage;		/* Usage String for this command */ | 
|  | 179 | char    *cmd_help;		/* Help message for this command */ | 
|  | 180 | short    cmd_flags;		/* Parsing flags */ | 
|  | 181 | short    cmd_minlen;		/* Minimum legal # command | 
|  | 182 | * chars required */ | 
|  | 183 | kdb_repeat_t cmd_repeat;	/* Does command auto repeat on enter? */ | 
|  | 184 | } kdbtab_t; | 
|  | 185 |  | 
|  | 186 | extern int kdb_bt(int, const char **);	/* KDB display back trace */ | 
|  | 187 |  | 
|  | 188 | /* KDB breakpoint management functions */ | 
|  | 189 | extern void kdb_initbptab(void); | 
|  | 190 | extern void kdb_bp_install(struct pt_regs *); | 
|  | 191 | extern void kdb_bp_remove(void); | 
|  | 192 |  | 
|  | 193 | typedef enum { | 
|  | 194 | KDB_DB_BPT,	/* Breakpoint */ | 
|  | 195 | KDB_DB_SS,	/* Single-step trap */ | 
|  | 196 | KDB_DB_SSB,	/* Single step to branch */ | 
|  | 197 | KDB_DB_SSBPT,	/* Single step over breakpoint */ | 
|  | 198 | KDB_DB_NOBPT	/* Spurious breakpoint */ | 
|  | 199 | } kdb_dbtrap_t; | 
|  | 200 |  | 
|  | 201 | extern int kdb_main_loop(kdb_reason_t, kdb_reason_t, | 
|  | 202 | int, kdb_dbtrap_t, struct pt_regs *); | 
|  | 203 |  | 
|  | 204 | /* Miscellaneous functions and data areas */ | 
|  | 205 | extern int kdb_grepping_flag; | 
|  | 206 | extern char kdb_grep_string[]; | 
|  | 207 | extern int kdb_grep_leading; | 
|  | 208 | extern int kdb_grep_trailing; | 
|  | 209 | extern char *kdb_cmds[]; | 
|  | 210 | extern void kdb_syslog_data(char *syslog_data[]); | 
|  | 211 | extern unsigned long kdb_task_state_string(const char *); | 
|  | 212 | extern char kdb_task_state_char (const struct task_struct *); | 
|  | 213 | extern unsigned long kdb_task_state(const struct task_struct *p, | 
|  | 214 | unsigned long mask); | 
|  | 215 | extern void kdb_ps_suppressed(void); | 
|  | 216 | extern void kdb_ps1(const struct task_struct *p); | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 217 | extern void kdb_print_nameval(const char *name, unsigned long val); | 
|  | 218 | extern void kdb_send_sig_info(struct task_struct *p, struct siginfo *info); | 
|  | 219 | extern void kdb_meminfo_proc_show(void); | 
| Jason Wessel | 5d5314d | 2010-05-20 21:04:20 -0500 | [diff] [blame] | 220 | extern char *kdb_getstr(char *, size_t, char *); | 
|  | 221 |  | 
|  | 222 | /* Defines for kdb_symbol_print */ | 
|  | 223 | #define KDB_SP_SPACEB	0x0001		/* Space before string */ | 
|  | 224 | #define KDB_SP_SPACEA	0x0002		/* Space after string */ | 
|  | 225 | #define KDB_SP_PAREN	0x0004		/* Parenthesis around string */ | 
|  | 226 | #define KDB_SP_VALUE	0x0008		/* Print the value of the address */ | 
|  | 227 | #define KDB_SP_SYMSIZE	0x0010		/* Print the size of the symbol */ | 
|  | 228 | #define KDB_SP_NEWLINE	0x0020		/* Newline after string */ | 
|  | 229 | #define KDB_SP_DEFAULT (KDB_SP_VALUE|KDB_SP_PAREN) | 
|  | 230 |  | 
|  | 231 | #define KDB_TSK(cpu) kgdb_info[cpu].task | 
|  | 232 | #define KDB_TSKREGS(cpu) kgdb_info[cpu].debuggerinfo | 
|  | 233 |  | 
|  | 234 | extern struct task_struct *kdb_curr_task(int); | 
|  | 235 |  | 
|  | 236 | #define kdb_task_has_cpu(p) (task_curr(p)) | 
|  | 237 |  | 
|  | 238 | /* Simplify coexistence with NPTL */ | 
|  | 239 | #define	kdb_do_each_thread(g, p) do_each_thread(g, p) | 
|  | 240 | #define	kdb_while_each_thread(g, p) while_each_thread(g, p) | 
|  | 241 |  | 
|  | 242 | #define GFP_KDB (in_interrupt() ? GFP_ATOMIC : GFP_KERNEL) | 
|  | 243 |  | 
|  | 244 | extern void *debug_kmalloc(size_t size, gfp_t flags); | 
|  | 245 | extern void debug_kfree(void *); | 
|  | 246 | extern void debug_kusage(void); | 
|  | 247 |  | 
|  | 248 | extern void kdb_set_current_task(struct task_struct *); | 
|  | 249 | extern struct task_struct *kdb_current_task; | 
|  | 250 | #ifdef CONFIG_MODULES | 
|  | 251 | extern struct list_head *kdb_modules; | 
|  | 252 | #endif /* CONFIG_MODULES */ | 
|  | 253 |  | 
|  | 254 | extern char kdb_prompt_str[]; | 
|  | 255 |  | 
|  | 256 | #define	KDB_WORD_SIZE	((int)sizeof(unsigned long)) | 
|  | 257 |  | 
|  | 258 | #endif /* CONFIG_KGDB_KDB */ | 
|  | 259 | #endif	/* !_KDBPRIVATE_H */ |