xref: /illumos-gate/usr/src/cmd/mdb/common/mdb/mdb.h (revision 3b6e0a598869dfc84461624e8699bf51738f68b3)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /*
27  * Copyright (c) 2012 by Delphix. All rights reserved.
28  * Copyright (c) 2012 Joyent, Inc. All rights reserved.
29  */
30 
31 #ifndef	_MDB_H
32 #define	_MDB_H
33 
34 #include <mdb/mdb_nv.h>
35 #include <mdb/mdb_io.h>
36 #include <mdb/mdb_gelf.h>
37 #include <mdb/mdb_addrvec.h>
38 #include <mdb/mdb_argvec.h>
39 #include <mdb/mdb_target.h>
40 #include <mdb/mdb_disasm.h>
41 #include <mdb/mdb_demangle.h>
42 #include <mdb/mdb_module.h>
43 #include <mdb/mdb_modapi.h>
44 #include <mdb/mdb_list.h>
45 #include <mdb/mdb_vcb.h>
46 #include <mdb/mdb_tab.h>
47 #ifdef _KMDB
48 #include <kmdb/kmdb_wr.h>
49 #endif
50 
51 #ifdef	__cplusplus
52 extern "C" {
53 #endif
54 
55 #define	MDB_ERR_PARSE	1	/* Error occurred in lexer or parser */
56 #define	MDB_ERR_NOMEM	2	/* Failed to allocate needed memory */
57 #define	MDB_ERR_PAGER	3	/* User quit current command from pager */
58 #define	MDB_ERR_SIGINT	4	/* User interrupt: abort current command */
59 #define	MDB_ERR_QUIT	5	/* User request: quit debugger */
60 #define	MDB_ERR_ASSERT	6	/* Assertion failure: abort current command */
61 #define	MDB_ERR_API	7	/* API function error: abort current command */
62 #define	MDB_ERR_ABORT	8	/* User abort or resume: abort to top level */
63 #define	MDB_ERR_OUTPUT	9	/* Write to m_out failed: abort to top level */
64 
65 #define	MDB_ERR_IS_FATAL(err)	\
66 	((err) == MDB_ERR_QUIT || (err) == MDB_ERR_ABORT || \
67 	(err) == MDB_ERR_OUTPUT)
68 
69 #define	MDB_DEF_RADIX	16	/* Default output radix */
70 #define	MDB_DEF_NARGS	6	/* Default # of arguments in stack trace */
71 #define	MDB_DEF_HISTLEN	128	/* Default length of command history */
72 #define	MDB_DEF_SYMDIST	0x8000	/* Default symbol distance for addresses */
73 #define	MDB_DEF_ARRMEM	32	/* Default number of array members to print */
74 #define	MDB_DEF_ARRSTR	1024	/* Default number of array chars to print */
75 
76 #define	MDB_ARR_NOLIMIT	-1UL	/* No limit on number of array elements */
77 
78 #define	MDB_FL_PSYM	0x00001	/* Print dot as symbol + offset when possible */
79 #define	MDB_FL_LOG	0x00002	/* Logging is enabled */
80 #define	MDB_FL_NOMODS	0x00004	/* Skip automatic mdb module loading */
81 #define	MDB_FL_USECUP	0x00008	/* Use terminal cup initialization sequences */
82 #define	MDB_FL_ADB	0x00010	/* Enable stricter adb(1) compatibility */
83 #define	MDB_FL_SHOWLMID	0x00020	/* Always show link map id with symbol names */
84 #define	MDB_FL_IGNEOF	0x00040	/* Ignore EOF as a synonym for ::quit */
85 #define	MDB_FL_REPLAST	0x00080	/* Naked newline repeats previous command */
86 #define	MDB_FL_PAGER	0x00100	/* Enable pager by default */
87 #define	MDB_FL_LATEST	0x00200	/* Replace version string with "latest" */
88 #define	MDB_FL_VCREATE	0x00400	/* Victim process was created by debugger */
89 #define	MDB_FL_JOBCTL	0x00800	/* Victim process jobctl stopped on same tty */
90 #define	MDB_FL_DEMANGLE	0x01000	/* Demangle symbols as part of %a processing */
91 #define	MDB_FL_EXEC	0x02000	/* Debugger exec'd by a previous instance */
92 #define	MDB_FL_NOCTF	0x04000	/* Skip automatic CTF data loading */
93 #define	MDB_FL_BPTNOSYMSTOP 0x08000 /* Stop on deferred bkpts for unk symbols */
94 #define	MDB_FL_TERMGUESS 0x10000 /* m_termtype derived from userland */
95 #define	MDB_FL_READBACK	0x20000	/* Read value back after write */
96 #ifdef _KMDB
97 #define	MDB_FL_NOUNLOAD	0x40000	/* Don't allow debugger unload */
98 #endif
99 #define	MDB_FL_LMRAW	0x80000	/* Show unresolved link map object names */
100 
101 #define	MDB_FL_VOLATILE	0x0001	/* Mask of all volatile flags to save/restore */
102 
103 #define	MDB_EM_ASK	0	/* Ask what to do on an exec */
104 #define	MDB_EM_STOP	1	/* Stop after an exec */
105 #define	MDB_EM_FOLLOW	2	/* Follow an exec */
106 
107 #define	MDB_FM_ASK	0	/* Ask what to do on a fork */
108 #define	MDB_FM_PARENT	1	/* Follow parent process on a fork */
109 #define	MDB_FM_CHILD	2	/* Follow child process on a fork */
110 
111 #define	MDB_PROMPTLEN	35	/* Maximum prompt length */
112 
113 struct kmdb_promif;
114 
115 typedef struct mdb {
116 	uint_t m_tgtflags;	/* Target open flags (see mdb_target.h) */
117 	uint_t m_flags;		/* Miscellaneous flags (see above) */
118 	uint_t m_debug;		/* Debugging flags (see mdb_debug.h) */
119 	int m_radix;		/* Default radix for output formatting */
120 	int m_nargs;		/* Default number of arguments in stack trace */
121 	int m_histlen;		/* Length of command history */
122 	size_t m_symdist;	/* Distance from sym for addr match (0=smart) */
123 	const char *m_pname;	/* Program basename from argv[0] */
124 	char m_promptraw[MDB_PROMPTLEN + 1]; /* Un-expanded prompt */
125 	char m_prompt[MDB_PROMPTLEN + 1]; /* Prompt for interactive mode */
126 	size_t m_promptlen;	/* Length of prompt in bytes */
127 	const char *m_shell;	/* Shell for ! commands and pipelines */
128 	char *m_root;		/* Root for path construction */
129 	char *m_ipathstr;	/* Path string for include path */
130 	char *m_lpathstr;	/* Path string for library path */
131 	const char **m_ipath;	/* Path for $< and $<< macro files */
132 	size_t m_ipathlen;	/* Length of underlying ipath buffer */
133 	const char **m_lpath;	/* Path for :: loadable modules */
134 	size_t m_lpathlen;	/* Length of underlying lpath buffer */
135 	mdb_modinfo_t m_rminfo;	/* Root debugger module information */
136 	mdb_module_t m_rmod;	/* Root debugger module (builtins) */
137 	mdb_module_t *m_mhead;	/* Head of module list (in load order) */
138 	mdb_module_t *m_mtail;	/* Tail of module list (in load order) */
139 	mdb_list_t m_tgtlist;	/* List of active target backends */
140 	mdb_tgt_t *m_target;	/* Current debugger target backend */
141 	mdb_nv_t m_disasms;	/* Hash of available disassemblers */
142 	mdb_disasm_t *m_disasm;	/* Current disassembler backend */
143 	char *m_defdisasm;	/* Deferred diassembler selection */
144 	mdb_nv_t m_modules;	/* Name/value hash for loadable modules */
145 	mdb_nv_t m_dcmds;	/* Name/value hash for extended commands */
146 	mdb_nv_t m_walkers;	/* Name/value hash for walk operations */
147 	mdb_nv_t m_nv;		/* Name/value hash for named variables */
148 	mdb_var_t *m_dot;	/* Variable reference for '.' */
149 	uintmax_t m_incr;	/* Current increment */
150 	uintmax_t m_raddr;	/* Most recent address specified to a dcmd */
151 	uintmax_t m_dcount;	/* Most recent count specified to a dcmd */
152 	mdb_var_t *m_rvalue;	/* Most recent value printed */
153 	mdb_var_t *m_roffset;	/* Most recent offset from an instruction */
154 	mdb_var_t *m_proffset;	/* Previous value of m_roffset */
155 	mdb_var_t *m_rcount;	/* Most recent count on $< dcmd */
156 	mdb_iob_t *m_in;	/* Input stream */
157 	mdb_iob_t *m_out;	/* Output stream */
158 	mdb_iob_t *m_err;	/* Error stream */
159 	mdb_iob_t *m_null;	/* Null stream */
160 	char *m_termtype;	/* Interactive mode terminal type */
161 	mdb_io_t *m_term;	/* Terminal for interactive mode */
162 	mdb_io_t *m_log;	/* Log file i/o backend (NULL if not logging) */
163 	mdb_module_t *m_lmod;	/* Pointer to loading module, if in load */
164 	mdb_list_t m_lastc;	/* Last executed command list */
165 	mdb_gelf_symtab_t *m_prsym;   /* Private symbol table */
166 	mdb_demangler_t *m_demangler; /* Demangler (see <mdb/mdb_demangle.h>) */
167 	mdb_list_t m_flist;	/* Stack of execution frames */
168 	struct mdb_frame *volatile m_frame; /* Current stack frame */
169 	struct mdb_frame *volatile m_fmark; /* Stack marker for pager */
170 	uint_t m_fid;		/* Next frame identifier number to assign */
171 	uint_t m_depth;		/* Depth of m_frame stack */
172 	volatile uint_t m_intr;	/* Don't allow SIGINT if set */
173 	volatile uint_t m_pend;	/* Pending SIGINT count */
174 	pid_t m_pgid;		/* Debugger process group id */
175 	uint_t m_rdvers;	/* Librtld_db version number */
176 	uint_t m_ctfvers;	/* Libctf version number */
177 	ulong_t m_armemlim;	/* Limit on number of array members to print */
178 	ulong_t m_arstrlim;	/* Limit on number of array chars to print */
179 	uchar_t m_execmode;	/* Follow exec behavior */
180 	uchar_t m_forkmode;	/* Follow fork behavior */
181 	char **m_env;		/* Current environment */
182 	mdb_list_t m_cblist;	/* List of callbacks */
183 	mdb_nv_t m_macaliases;	/* Name/value hash of ADB macro aliases */
184 #ifdef _KMDB
185 	struct dpi_ops *m_dpi;	/* DPI ops vector */
186 	struct kdi *m_kdi;	/* KDI ops vector */
187 	size_t m_pagesize;	/* Base page size for this machine */
188 	caddr_t m_dseg;		/* Debugger segment address */
189 	size_t m_dsegsz;	/* Debugger segment size */
190 	mdb_nv_t m_dmodctl;	/* dmod name -> kmdb_modctl hash */
191 	kmdb_wr_t *m_drvwrhead;	/* Driver work request queue */
192 	kmdb_wr_t *m_drvwrtail;	/* Driver work request queue */
193 	kmdb_wr_t *m_dbgwrhead;	/* Debugger request queue */
194 	kmdb_wr_t *m_dbgwrtail;	/* Debugger request queue */
195 	struct cons_polledio *m_pio; /* Polled I/O struct from kernel */
196 	struct kmdb_promif *m_promif; /* Debugger/PROM interface state */
197 #endif
198 } mdb_t;
199 
200 #ifdef _MDB_PRIVATE
201 mdb_t mdb;
202 #else
203 extern mdb_t mdb;
204 #endif
205 
206 #ifdef _MDB
207 
208 #define	MDB_CONFIG_ENV_VAR "_MDB_CONFIG"
209 
210 extern void mdb_create(const char *, const char *);
211 extern void mdb_destroy(void);
212 
213 extern int mdb_call_idcmd(mdb_idcmd_t *, uintmax_t, uintmax_t, uint_t,
214     mdb_argvec_t *, mdb_addrvec_t *, mdb_vcb_t *);
215 extern void mdb_call_tab(mdb_idcmd_t *, mdb_tab_cookie_t *, uint_t, uintmax_t,
216     mdb_arg_t *);
217 
218 extern int mdb_call(uintmax_t, uintmax_t, uint_t);
219 extern int mdb_run(void);
220 
221 extern const char *mdb_get_prompt(void);
222 extern int mdb_set_prompt(const char *);
223 extern void mdb_set_ipath(const char *);
224 extern void mdb_set_lpath(const char *);
225 
226 extern const char **mdb_path_alloc(const char *, size_t *);
227 extern const char **mdb_path_dup(const char *[], size_t, size_t *);
228 extern void mdb_path_free(const char *[], size_t);
229 
230 extern uintmax_t mdb_dot_incr(const char *);
231 extern uintmax_t mdb_dot_decr(const char *);
232 
233 extern mdb_iwalker_t *mdb_walker_lookup(const char *);
234 extern mdb_idcmd_t *mdb_dcmd_lookup(const char *);
235 extern void mdb_dcmd_usage(const mdb_idcmd_t *, mdb_iob_t *);
236 
237 extern void mdb_pservice_init(void);
238 
239 extern void mdb_intr_enable(void);
240 extern void mdb_intr_disable(void);
241 
242 extern char *mdb_get_config(void);
243 extern void mdb_set_config(const char *);
244 
245 extern mdb_module_t *mdb_get_module(void);
246 
247 #endif /* _MDB */
248 
249 #ifdef	__cplusplus
250 }
251 #endif
252 
253 #endif	/* _MDB_H */
254