xref: /freebsd/sys/ddb/ddb.h (revision bfe691b2f75de2224c7ceb304ebcdef2b42d4179)
1 /*-
2  * Copyright (c) 1993, Garrett A. Wollman.
3  * Copyright (c) 1993, University of Vermont and State Agricultural College.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. Neither the name of the University nor the names of its contributors
15  *    may be used to endorse or promote products derived from this software
16  *    without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $FreeBSD$
31  */
32 
33 /*
34  * Necessary declarations for the `ddb' kernel debugger.
35  */
36 
37 #ifndef _DDB_DDB_H_
38 #define	_DDB_DDB_H_
39 
40 #include <machine/db_machdep.h>		/* type definitions */
41 
42 #ifndef DB_MAXARGS
43 #define	DB_MAXARGS	10
44 #endif
45 
46 #ifndef DB_CALL
47 #define	DB_CALL	db_fncall_generic
48 #else
49 int	DB_CALL(db_expr_t, db_expr_t *, int, db_expr_t[]);
50 #endif
51 
52 typedef void db_cmdfcn_t(db_expr_t addr, boolean_t have_addr, db_expr_t count,
53 	    char *modif);
54 
55 #define DB_COMMAND(cmd_name, func_name) \
56 	DB_FUNC(cmd_name, func_name, db_cmd_set, 0, NULL)
57 #define DB_SHOW_COMMAND(cmd_name, func_name) \
58 	DB_FUNC(cmd_name, func_name, db_show_cmd_set, 0, NULL)
59 
60 #define	DB_SET(cmd_name, func_name, set, flag, more)		\
61 static const struct command __CONCAT(cmd_name,_cmd) = {		\
62 	__STRING(cmd_name),					\
63 	func_name,						\
64 	flag,							\
65 	more							\
66 };								\
67 TEXT_SET(set, __CONCAT(cmd_name,_cmd))
68 
69 #define DB_FUNC(cmd_name, func_name, set, flag, more)		\
70 static db_cmdfcn_t	func_name;				\
71 								\
72 DB_SET(cmd_name, func_name, set, flag, more);			\
73 								\
74 static void							\
75 func_name(addr, have_addr, count, modif)			\
76 	db_expr_t addr;						\
77 	boolean_t have_addr;					\
78 	db_expr_t count;					\
79 	char *modif;
80 
81 extern db_expr_t db_maxoff;
82 extern int db_indent;
83 extern int db_inst_count;
84 extern int db_load_count;
85 extern int db_store_count;
86 extern volatile int db_pager_quit;
87 extern db_expr_t db_radix;
88 extern db_expr_t db_max_width;
89 extern db_expr_t db_tab_stop_width;
90 extern db_expr_t db_lines_per_page;
91 
92 struct thread;
93 struct vm_map;
94 
95 void		db_check_interrupt(void);
96 void		db_clear_watchpoints(void);
97 db_addr_t	db_disasm(db_addr_t loc, boolean_t altfmt);
98 				/* instruction disassembler */
99 void		db_error(const char *s);
100 int		db_expression(db_expr_t *valuep);
101 int		db_get_variable(db_expr_t *valuep);
102 void		db_iprintf(const char *,...) __printflike(1, 2);
103 struct proc	*db_lookup_proc(db_expr_t addr);
104 struct thread	*db_lookup_thread(db_expr_t addr, boolean_t check_pid);
105 struct vm_map	*db_map_addr(vm_offset_t);
106 boolean_t	db_map_current(struct vm_map *);
107 boolean_t	db_map_equal(struct vm_map *, struct vm_map *);
108 int		db_md_set_watchpoint(db_expr_t addr, db_expr_t size);
109 int		db_md_clr_watchpoint(db_expr_t addr, db_expr_t size);
110 void		db_md_list_watchpoints(void);
111 void		db_print_loc_and_inst(db_addr_t loc);
112 void		db_print_thread(void);
113 void		db_printf(const char *fmt, ...) __printflike(1, 2);
114 int		db_read_bytes(vm_offset_t addr, size_t size, char *data);
115 				/* machine-dependent */
116 int		db_readline(char *lstart, int lsize);
117 void		db_restart_at_pc(boolean_t watchpt);
118 int		db_set_variable(db_expr_t value);
119 void		db_set_watchpoints(void);
120 void		db_skip_to_eol(void);
121 boolean_t	db_stop_at_pc(boolean_t *is_breakpoint);
122 #define		db_strcpy	strcpy
123 void		db_trace_self(void);
124 int		db_trace_thread(struct thread *, int);
125 int		db_value_of_name(const char *name, db_expr_t *valuep);
126 int		db_write_bytes(vm_offset_t addr, size_t size, char *data);
127 
128 db_cmdfcn_t	db_breakpoint_cmd;
129 db_cmdfcn_t	db_continue_cmd;
130 db_cmdfcn_t	db_delete_cmd;
131 db_cmdfcn_t	db_deletehwatch_cmd;
132 db_cmdfcn_t	db_deletewatch_cmd;
133 db_cmdfcn_t	db_examine_cmd;
134 db_cmdfcn_t	db_hwatchpoint_cmd;
135 db_cmdfcn_t	db_listbreak_cmd;
136 db_cmdfcn_t	db_print_cmd;
137 db_cmdfcn_t	db_ps;
138 db_cmdfcn_t	db_search_cmd;
139 db_cmdfcn_t	db_set_cmd;
140 db_cmdfcn_t	db_set_thread;
141 db_cmdfcn_t	db_show_regs;
142 db_cmdfcn_t	db_show_threads;
143 db_cmdfcn_t	db_single_step_cmd;
144 db_cmdfcn_t	db_trace_until_call_cmd;
145 db_cmdfcn_t	db_trace_until_matching_cmd;
146 db_cmdfcn_t	db_watchpoint_cmd;
147 db_cmdfcn_t	db_write_cmd;
148 
149 /*
150  * Command table.
151  */
152 struct command;
153 
154 struct command_table {
155 	struct command *table;
156 	struct command **aux_tablep;
157 	struct command **aux_tablep_end;
158 };
159 
160 struct command {
161 	char *	name;		/* command name */
162 	db_cmdfcn_t *fcn;	/* function to call */
163 	int	flag;		/* extra info: */
164 #define	CS_OWN		0x1	/* non-standard syntax */
165 #define	CS_MORE		0x2	/* standard syntax, but may have other words
166 				 * at end */
167 #define	CS_SET_DOT	0x100	/* set dot after command */
168 	struct command_table *more; /* another level of command */
169 };
170 
171 #endif /* !_DDB_DDB_H_ */
172