db_command.c revision 1.167 1 1.167 thorpej /* $NetBSD: db_command.c,v 1.167 2020/01/01 22:57:17 thorpej Exp $ */
2 1.131 ad
3 1.98 martin /*
4 1.166 ad * Copyright (c) 1996, 1997, 1998, 1999, 2002, 2009, 2019
5 1.166 ad * The NetBSD Foundation, Inc.
6 1.98 martin * All rights reserved.
7 1.98 martin *
8 1.98 martin * This code is derived from software contributed to The NetBSD Foundation
9 1.131 ad * by Adam Hamsik, and by Andrew Doran.
10 1.98 martin *
11 1.98 martin * Redistribution and use in source and binary forms, with or without
12 1.98 martin * modification, are permitted provided that the following conditions
13 1.98 martin * are met:
14 1.98 martin * 1. Redistributions of source code must retain the above copyright
15 1.98 martin * notice, this list of conditions and the following disclaimer.
16 1.98 martin * 2. Redistributions in binary form must reproduce the above copyright
17 1.98 martin * notice, this list of conditions and the following disclaimer in the
18 1.98 martin * documentation and/or other materials provided with the distribution.
19 1.98 martin *
20 1.98 martin * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.98 martin * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.98 martin * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.98 martin * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.98 martin * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.98 martin * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.98 martin * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.98 martin * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.98 martin * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.98 martin * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.98 martin * POSSIBILITY OF SUCH DAMAGE.
31 1.98 martin */
32 1.25 mrg
33 1.63 lukem /*
34 1.131 ad * Mach Operating System
35 1.131 ad * Copyright (c) 1991,1990 Carnegie Mellon University
36 1.131 ad * All Rights Reserved.
37 1.131 ad *
38 1.131 ad * Permission to use, copy, modify and distribute this software and its
39 1.131 ad * documentation is hereby granted, provided that both the copyright
40 1.131 ad * notice and this permission notice appear in all copies of the
41 1.131 ad * software, derivative works or modified versions, and any portions
42 1.131 ad * thereof, and that both notices appear in supporting documentation.
43 1.131 ad *
44 1.131 ad * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
45 1.131 ad * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
46 1.131 ad * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
47 1.131 ad *
48 1.131 ad * Carnegie Mellon requests users of this software to return to
49 1.131 ad *
50 1.131 ad * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
51 1.131 ad * School of Computer Science
52 1.131 ad * Carnegie Mellon University
53 1.131 ad * Pittsburgh PA 15213-3890
54 1.131 ad *
55 1.131 ad * any improvements or extensions that they make and grant Carnegie the
56 1.131 ad * rights to redistribute these changes.
57 1.131 ad */
58 1.131 ad
59 1.131 ad /*
60 1.63 lukem * Command dispatcher.
61 1.63 lukem */
62 1.63 lukem
63 1.63 lukem #include <sys/cdefs.h>
64 1.167 thorpej __KERNEL_RCSID(0, "$NetBSD: db_command.c,v 1.167 2020/01/01 22:57:17 thorpej Exp $");
65 1.63 lukem
66 1.129 ad #ifdef _KERNEL_OPT
67 1.121 ad #include "opt_aio.h"
68 1.27 tron #include "opt_ddb.h"
69 1.69 briggs #include "opt_kgdb.h"
70 1.133 rmind #include "opt_mqueue.h"
71 1.40 jhawk #include "opt_inet.h"
72 1.136 mrg #include "opt_kernhist.h"
73 1.80 yamt #include "opt_ddbparam.h"
74 1.129 ad #include "opt_multiprocessor.h"
75 1.129 ad #endif
76 1.5 mycroft
77 1.7 mycroft #include <sys/param.h>
78 1.18 christos #include <sys/systm.h>
79 1.23 scottr #include <sys/reboot.h>
80 1.65 simonb #include <sys/device.h>
81 1.112 yamt #include <sys/lwp.h>
82 1.83 yamt #include <sys/mbuf.h>
83 1.65 simonb #include <sys/namei.h>
84 1.65 simonb #include <sys/pool.h>
85 1.7 mycroft #include <sys/proc.h>
86 1.36 chs #include <sys/vnode.h>
87 1.112 yamt #include <sys/vmem.h>
88 1.92 ad #include <sys/lockdebug.h>
89 1.109 ad #include <sys/cpu.h>
90 1.122 pooka #include <sys/buf.h>
91 1.123 ad #include <sys/module.h>
92 1.136 mrg #include <sys/kernhist.h>
93 1.154 msaitoh #include <sys/socketvar.h>
94 1.159 mrg #include <sys/queue.h>
95 1.15 gwr
96 1.159 mrg #include <dev/cons.h>
97 1.98 martin
98 1.129 ad #include <ddb/ddb.h>
99 1.1 cgd
100 1.24 mrg #include <uvm/uvm_extern.h>
101 1.26 jonathan #include <uvm/uvm_ddb.h>
102 1.24 mrg
103 1.147 ozaki #include <net/route.h>
104 1.147 ozaki
105 1.1 cgd /*
106 1.64 simonb * Results of command search.
107 1.64 simonb */
108 1.126 haad #define CMD_EXACT 0
109 1.126 haad #define CMD_PREFIX 1
110 1.126 haad #define CMD_NONE 2
111 1.64 simonb #define CMD_AMBIGUOUS 3
112 1.98 martin
113 1.64 simonb /*
114 1.1 cgd * Exported global variables
115 1.1 cgd */
116 1.93 thorpej bool db_cmd_loop_done;
117 1.17 gwr label_t *db_recover;
118 1.64 simonb db_addr_t db_dot;
119 1.64 simonb db_addr_t db_last_addr;
120 1.64 simonb db_addr_t db_prev;
121 1.64 simonb db_addr_t db_next;
122 1.1 cgd
123 1.98 martin
124 1.98 martin /*
125 1.126 haad * New DDB api for adding and removing commands uses three lists, because
126 1.126 haad * we use two types of commands
127 1.126 haad * a) standard commands without subcommands -> reboot
128 1.126 haad * b) show commands which are subcommands of show command -> show aio_jobs
129 1.126 haad * c) if defined machine specific commands
130 1.126 haad *
131 1.126 haad * ddb_add_cmd, ddb_rem_cmd use type (DDB_SHOW_CMD||DDB_BASE_CMD)argument to
132 1.126 haad * add them to representativ lists.
133 1.126 haad */
134 1.98 martin
135 1.103 martin static const struct db_command db_command_table[];
136 1.103 martin static const struct db_command db_show_cmds[];
137 1.126 haad
138 1.103 martin #ifdef DB_MACHINE_COMMANDS
139 1.134 drochner /* arch/<arch>/<arch>/db_interface.c */
140 1.134 drochner extern const struct db_command db_machine_command_table[];
141 1.103 martin #endif
142 1.103 martin
143 1.105 martin /* the global queue of all command tables */
144 1.105 martin TAILQ_HEAD(db_cmd_tbl_en_head, db_cmd_tbl_en);
145 1.105 martin
146 1.105 martin /* TAILQ entry used to register command tables */
147 1.105 martin struct db_cmd_tbl_en {
148 1.105 martin const struct db_command *db_cmd; /* cmd table */
149 1.105 martin TAILQ_ENTRY(db_cmd_tbl_en) db_cmd_next;
150 1.105 martin };
151 1.105 martin
152 1.103 martin /* head of base commands list */
153 1.98 martin static struct db_cmd_tbl_en_head db_base_cmd_list =
154 1.98 martin TAILQ_HEAD_INITIALIZER(db_base_cmd_list);
155 1.103 martin static struct db_cmd_tbl_en db_base_cmd_builtins =
156 1.103 martin { .db_cmd = db_command_table };
157 1.98 martin
158 1.103 martin /* head of show commands list */
159 1.98 martin static struct db_cmd_tbl_en_head db_show_cmd_list =
160 1.98 martin TAILQ_HEAD_INITIALIZER(db_show_cmd_list);
161 1.103 martin static struct db_cmd_tbl_en db_show_cmd_builtins =
162 1.103 martin { .db_cmd = db_show_cmds };
163 1.98 martin
164 1.103 martin /* head of machine commands list */
165 1.98 martin static struct db_cmd_tbl_en_head db_mach_cmd_list =
166 1.98 martin TAILQ_HEAD_INITIALIZER(db_mach_cmd_list);
167 1.103 martin #ifdef DB_MACHINE_COMMANDS
168 1.103 martin static struct db_cmd_tbl_en db_mach_cmd_builtins =
169 1.103 martin { .db_cmd = db_machine_command_table };
170 1.98 martin #endif
171 1.98 martin
172 1.1 cgd /*
173 1.1 cgd * if 'ed' style: 'dot' is set at start of last item printed,
174 1.1 cgd * and '+' points to next line.
175 1.1 cgd * Otherwise: 'dot' points to next item, '..' points to last.
176 1.1 cgd */
177 1.95 thorpej static bool db_ed_style = true;
178 1.64 simonb
179 1.104 martin static void db_init_commands(void);
180 1.103 martin static int db_register_tbl_entry(uint8_t type,
181 1.103 martin struct db_cmd_tbl_en *list_ent);
182 1.98 martin static void db_cmd_list(const struct db_cmd_tbl_en_head *);
183 1.126 haad static int db_cmd_search(const char *, struct db_cmd_tbl_en_head *,
184 1.126 haad const struct db_command **);
185 1.126 haad static int db_cmd_search_table(const char *, const struct db_command *,
186 1.126 haad const struct db_command **);
187 1.126 haad static void db_cmd_search_failed(char *, int);
188 1.126 haad static const struct db_command *db_read_command(void);
189 1.98 martin static void db_command(const struct db_command **);
190 1.94 matt static void db_buf_print_cmd(db_expr_t, bool, db_expr_t, const char *);
191 1.94 matt static void db_event_print_cmd(db_expr_t, bool, db_expr_t, const char *);
192 1.94 matt static void db_fncall(db_expr_t, bool, db_expr_t, const char *);
193 1.98 martin static void db_help_print_cmd(db_expr_t, bool, db_expr_t, const char *);
194 1.98 martin static void db_lock_print_cmd(db_expr_t, bool, db_expr_t, const char *);
195 1.151 ozaki static void db_show_all_locks(db_expr_t, bool, db_expr_t, const char *);
196 1.153 ozaki static void db_show_lockstats(db_expr_t, bool, db_expr_t, const char *);
197 1.166 ad static void db_show_all_freelists(db_expr_t, bool, db_expr_t, const char *);
198 1.98 martin static void db_mount_print_cmd(db_expr_t, bool, db_expr_t, const char *);
199 1.165 joerg static void db_show_all_mount(db_expr_t, bool, db_expr_t, const char *);
200 1.98 martin static void db_mbuf_print_cmd(db_expr_t, bool, db_expr_t, const char *);
201 1.94 matt static void db_map_print_cmd(db_expr_t, bool, db_expr_t, const char *);
202 1.98 martin static void db_namecache_print_cmd(db_expr_t, bool, db_expr_t,
203 1.98 martin const char *);
204 1.94 matt static void db_object_print_cmd(db_expr_t, bool, db_expr_t, const char *);
205 1.94 matt static void db_page_print_cmd(db_expr_t, bool, db_expr_t, const char *);
206 1.94 matt static void db_show_all_pages(db_expr_t, bool, db_expr_t, const char *);
207 1.94 matt static void db_pool_print_cmd(db_expr_t, bool, db_expr_t, const char *);
208 1.94 matt static void db_reboot_cmd(db_expr_t, bool, db_expr_t, const char *);
209 1.94 matt static void db_sifting_cmd(db_expr_t, bool, db_expr_t, const char *);
210 1.154 msaitoh static void db_socket_print_cmd(db_expr_t, bool, db_expr_t, const char *);
211 1.94 matt static void db_stack_trace_cmd(db_expr_t, bool, db_expr_t, const char *);
212 1.94 matt static void db_sync_cmd(db_expr_t, bool, db_expr_t, const char *);
213 1.112 yamt static void db_whatis_cmd(db_expr_t, bool, db_expr_t, const char *);
214 1.94 matt static void db_uvmexp_print_cmd(db_expr_t, bool, db_expr_t, const char *);
215 1.136 mrg #ifdef KERNHIST
216 1.136 mrg static void db_kernhist_print_cmd(db_expr_t, bool, db_expr_t, const char *);
217 1.118 skrll #endif
218 1.94 matt static void db_vnode_print_cmd(db_expr_t, bool, db_expr_t, const char *);
219 1.148 joerg static void db_vnode_lock_print_cmd(db_expr_t, bool, db_expr_t,
220 1.148 joerg const char *);
221 1.125 cegger static void db_vmem_print_cmd(db_expr_t, bool, db_expr_t, const char *);
222 1.64 simonb
223 1.64 simonb static const struct db_command db_show_cmds[] = {
224 1.98 martin /*added from all sub cmds*/
225 1.98 martin { DDB_ADD_CMD("callout", db_show_callout,
226 1.98 martin 0 ,"List all used callout functions.",NULL,NULL) },
227 1.98 martin { DDB_ADD_CMD("pages", db_show_all_pages,
228 1.98 martin 0 ,"List all used memory pages.",NULL,NULL) },
229 1.135 christos { DDB_ADD_CMD("proc", db_show_proc,
230 1.135 christos 0 ,"Print process information.",NULL,NULL) },
231 1.98 martin { DDB_ADD_CMD("procs", db_show_all_procs,
232 1.98 martin 0 ,"List all processes.",NULL,NULL) },
233 1.98 martin { DDB_ADD_CMD("pools", db_show_all_pools,
234 1.135 christos 0 ,"Show all pools",NULL,NULL) },
235 1.151 ozaki { DDB_ADD_CMD("locks", db_show_all_locks,
236 1.151 ozaki 0 ,"Show all held locks", "[/t]", NULL) },
237 1.165 joerg { DDB_ADD_CMD("mount", db_show_all_mount, 0,
238 1.165 joerg "Print all mount structures.", "[/f]", NULL) },
239 1.166 ad { DDB_ADD_CMD("freelists", db_show_all_freelists,
240 1.166 ad 0 ,"Show all freelists", NULL, NULL) },
241 1.121 ad #ifdef AIO
242 1.98 martin /*added from all sub cmds*/
243 1.98 martin { DDB_ADD_CMD("aio_jobs", db_show_aio_jobs, 0,
244 1.98 martin "Show aio jobs",NULL,NULL) },
245 1.121 ad #endif
246 1.98 martin { DDB_ADD_CMD("all", NULL,
247 1.98 martin CS_COMPAT, NULL,NULL,NULL) },
248 1.147 ozaki #if defined(INET)
249 1.147 ozaki { DDB_ADD_CMD("routes", db_show_routes, 0,NULL,NULL,NULL) },
250 1.64 simonb #endif
251 1.129 ad #ifdef _KERNEL
252 1.98 martin { DDB_ADD_CMD("breaks", db_listbreak_cmd, 0,
253 1.98 martin "Display all breaks.",NULL,NULL) },
254 1.129 ad #endif
255 1.98 martin { DDB_ADD_CMD("buf", db_buf_print_cmd, 0,
256 1.98 martin "Print the struct buf at address.", "[/f] address",NULL) },
257 1.149 mlelstv { DDB_ADD_CMD("devices", db_show_all_devices, 0,NULL,NULL,NULL) },
258 1.98 martin { DDB_ADD_CMD("event", db_event_print_cmd, 0,
259 1.132 mrg "Print all the non-zero evcnt(9) event counters.", "[/fitm]",NULL) },
260 1.117 blymn { DDB_ADD_CMD("files", db_show_files_cmd, 0,
261 1.117 blymn "Print the files open by process at address",
262 1.117 blymn "[/f] address", NULL) },
263 1.98 martin { DDB_ADD_CMD("lock", db_lock_print_cmd, 0,NULL,NULL,NULL) },
264 1.153 ozaki { DDB_ADD_CMD("lockstats",
265 1.153 ozaki db_show_lockstats, 0,
266 1.150 ozaki "Print statistics of locks", NULL, NULL) },
267 1.98 martin { DDB_ADD_CMD("map", db_map_print_cmd, 0,
268 1.98 martin "Print the vm_map at address.", "[/f] address",NULL) },
269 1.154 msaitoh { DDB_ADD_CMD("socket", db_socket_print_cmd, 0,NULL,NULL,NULL) },
270 1.123 ad { DDB_ADD_CMD("module", db_show_module_cmd, 0,
271 1.123 ad "Print kernel modules", NULL, NULL) },
272 1.98 martin { DDB_ADD_CMD("mount", db_mount_print_cmd, 0,
273 1.98 martin "Print the mount structure at address.", "[/f] address",NULL) },
274 1.133 rmind #ifdef MQUEUE
275 1.119 rmind { DDB_ADD_CMD("mqueue", db_show_mqueue_cmd, 0,
276 1.119 rmind "Print the message queues", NULL, NULL) },
277 1.133 rmind #endif
278 1.98 martin { DDB_ADD_CMD("mbuf", db_mbuf_print_cmd, 0,NULL,NULL,
279 1.98 martin "-c prints all mbuf chains") },
280 1.98 martin { DDB_ADD_CMD("ncache", db_namecache_print_cmd, 0,
281 1.98 martin "Dump the namecache list.", "address",NULL) },
282 1.98 martin { DDB_ADD_CMD("object", db_object_print_cmd, 0,
283 1.98 martin "Print the vm_object at address.", "[/f] address",NULL) },
284 1.98 martin { DDB_ADD_CMD("page", db_page_print_cmd, 0,
285 1.98 martin "Print the vm_page at address.", "[/f] address",NULL) },
286 1.139 christos { DDB_ADD_CMD("panic", db_show_panic, 0,
287 1.139 christos "Print the current panic string",NULL,NULL) },
288 1.98 martin { DDB_ADD_CMD("pool", db_pool_print_cmd, 0,
289 1.98 martin "Print the pool at address.", "[/clp] address",NULL) },
290 1.98 martin { DDB_ADD_CMD("registers", db_show_regs, 0,
291 1.98 martin "Display the register set.", "[/u]",NULL) },
292 1.98 martin { DDB_ADD_CMD("sched_qs", db_show_sched_qs, 0,
293 1.98 martin "Print the state of the scheduler's run queues.",
294 1.98 martin NULL,NULL) },
295 1.98 martin { DDB_ADD_CMD("uvmexp", db_uvmexp_print_cmd, 0,
296 1.98 martin "Print a selection of UVM counters and statistics.",
297 1.98 martin NULL,NULL) },
298 1.136 mrg #ifdef KERNHIST
299 1.136 mrg { DDB_ADD_CMD("kernhist", db_kernhist_print_cmd, 0,
300 1.118 skrll "Print the UVM history logs.",
301 1.118 skrll NULL,NULL) },
302 1.118 skrll #endif
303 1.98 martin { DDB_ADD_CMD("vnode", db_vnode_print_cmd, 0,
304 1.98 martin "Print the vnode at address.", "[/f] address",NULL) },
305 1.148 joerg { DDB_ADD_CMD("vnode_lock", db_vnode_lock_print_cmd, 0,
306 1.148 joerg "Print the vnode having that address as v_lock.",
307 1.148 joerg "[/f] address",NULL) },
308 1.125 cegger { DDB_ADD_CMD("vmem", db_vmem_print_cmd, 0,
309 1.125 cegger "Print the vmem usage.", "[/a] address", NULL) },
310 1.125 cegger { DDB_ADD_CMD("vmems", db_show_all_vmems, 0,
311 1.125 cegger "Show all vmems.", NULL, NULL) },
312 1.129 ad #ifdef _KERNEL
313 1.98 martin { DDB_ADD_CMD("watches", db_listwatch_cmd, 0,
314 1.98 martin "Display all watchpoints.", NULL,NULL) },
315 1.129 ad #endif
316 1.98 martin { DDB_ADD_CMD(NULL, NULL, 0,NULL,NULL,NULL) }
317 1.64 simonb };
318 1.64 simonb
319 1.64 simonb static const struct db_command db_command_table[] = {
320 1.98 martin { DDB_ADD_CMD("b", db_breakpoint_cmd, 0,
321 1.98 martin "Set a breakpoint at address", "[/u] address[,count].",NULL) },
322 1.98 martin { DDB_ADD_CMD("break", db_breakpoint_cmd, 0,
323 1.98 martin "Set a breakpoint at address", "[/u] address[,count].",NULL) },
324 1.98 martin { DDB_ADD_CMD("bt", db_stack_trace_cmd, 0,
325 1.98 martin "Show backtrace.", "See help trace.",NULL) },
326 1.98 martin { DDB_ADD_CMD("c", db_continue_cmd, 0,
327 1.98 martin "Continue execution.", "[/c]",NULL) },
328 1.98 martin { DDB_ADD_CMD("call", db_fncall, CS_OWN,
329 1.98 martin "Call the function", "address[(expression[,...])]",NULL) },
330 1.98 martin { DDB_ADD_CMD("callout", db_show_callout, 0, NULL,
331 1.98 martin NULL,NULL ) },
332 1.98 martin { DDB_ADD_CMD("continue", db_continue_cmd, 0,
333 1.98 martin "Continue execution.", "[/c]",NULL) },
334 1.98 martin { DDB_ADD_CMD("d", db_delete_cmd, 0,
335 1.98 martin "Delete a breakpoint.", "address | #number",NULL) },
336 1.98 martin { DDB_ADD_CMD("delete", db_delete_cmd, 0,
337 1.98 martin "Delete a breakpoint.", "address | #number",NULL) },
338 1.142 christos { DDB_ADD_CMD("dmesg", db_dmesg, 0,
339 1.142 christos "Show kernel message buffer.", "[count]",NULL) },
340 1.98 martin { DDB_ADD_CMD("dwatch", db_deletewatch_cmd, 0,
341 1.98 martin "Delete the watchpoint.", "address",NULL) },
342 1.98 martin { DDB_ADD_CMD("examine", db_examine_cmd, CS_SET_DOT,
343 1.98 martin "Display the address locations.",
344 1.98 martin "[/modifier] address[,count]",NULL) },
345 1.129 ad { DDB_ADD_CMD("exit", db_continue_cmd, 0,
346 1.129 ad "Continue execution.", "[/c]",NULL) },
347 1.98 martin { DDB_ADD_CMD("help", db_help_print_cmd, CS_OWN|CS_NOREPEAT,
348 1.98 martin "Display help about commands",
349 1.98 martin "Use other commands as arguments.",NULL) },
350 1.98 martin { DDB_ADD_CMD("kill", db_kill_proc, CS_OWN,
351 1.98 martin "Send a signal to the process","pid[,signal_number]",
352 1.98 martin " pid:\t\t\tthe process id (may need 0t prefix for decimal)\n"
353 1.98 martin " signal_number:\tthe signal to send") },
354 1.69 briggs #ifdef KGDB
355 1.99 martin { DDB_ADD_CMD("kgdb", db_kgdb_cmd, 0, NULL,NULL,NULL) },
356 1.69 briggs #endif
357 1.98 martin { DDB_ADD_CMD("machine",NULL,CS_MACH,
358 1.98 martin "Architecture specific functions.",NULL,NULL) },
359 1.98 martin { DDB_ADD_CMD("match", db_trace_until_matching_cmd,0,
360 1.98 martin "Stop at the matching return instruction.","See help next",NULL) },
361 1.98 martin { DDB_ADD_CMD("next", db_trace_until_matching_cmd,0,
362 1.98 martin "Stop at the matching return instruction.","[/p]",NULL) },
363 1.98 martin { DDB_ADD_CMD("p", db_print_cmd, 0,
364 1.98 martin "Print address according to the format.",
365 1.98 martin "[/axzodurc] address [address ...]",NULL) },
366 1.98 martin { DDB_ADD_CMD("print", db_print_cmd, 0,
367 1.98 martin "Print address according to the format.",
368 1.98 martin "[/axzodurc] address [address ...]",NULL) },
369 1.98 martin { DDB_ADD_CMD("ps", db_show_all_procs, 0,
370 1.98 martin "Print all processes.","See show all procs",NULL) },
371 1.129 ad { DDB_ADD_CMD("quit", db_continue_cmd, 0,
372 1.129 ad "Continue execution.", "[/c]",NULL) },
373 1.98 martin { DDB_ADD_CMD("reboot", db_reboot_cmd, CS_OWN,
374 1.98 martin "Reboot","0x1 RB_ASKNAME, 0x2 RB_SINGLE, 0x4 RB_NOSYNC, 0x8 RB_HALT,"
375 1.98 martin "0x40 RB_KDB, 0x100 RB_DUMP, 0x808 RB_POWERDOWN",NULL) },
376 1.98 martin { DDB_ADD_CMD("s", db_single_step_cmd, 0,
377 1.98 martin "Single-step count times.","[/p] [,count]",NULL) },
378 1.98 martin { DDB_ADD_CMD("search", db_search_cmd, CS_OWN|CS_SET_DOT,
379 1.98 martin "Search memory from address for value.",
380 1.98 martin "[/bhl] address value [mask] [,count]",NULL) },
381 1.98 martin { DDB_ADD_CMD("set", db_set_cmd, CS_OWN,
382 1.98 martin "Set the named variable","$variable [=] expression",NULL) },
383 1.107 martin { DDB_ADD_CMD("show", NULL, CS_SHOW,
384 1.98 martin "Show kernel stats.", NULL,NULL) },
385 1.98 martin { DDB_ADD_CMD("sifting", db_sifting_cmd, CS_OWN,
386 1.98 martin "Search the symbol tables ","[/F] string",NULL) },
387 1.98 martin { DDB_ADD_CMD("step", db_single_step_cmd, 0,
388 1.98 martin "Single-step count times.","[/p] [,count]",NULL) },
389 1.98 martin { DDB_ADD_CMD("sync", db_sync_cmd, CS_OWN,
390 1.98 martin "Force a crash dump, and then reboot.",NULL,NULL) },
391 1.98 martin { DDB_ADD_CMD("trace", db_stack_trace_cmd, 0,
392 1.98 martin "Stack trace from frame-address.",
393 1.98 martin "[/u[l]] [frame-address][,count]",NULL) },
394 1.98 martin { DDB_ADD_CMD("until", db_trace_until_call_cmd,0,
395 1.98 martin "Stop at the next call or return instruction.","[/p]",NULL) },
396 1.98 martin { DDB_ADD_CMD("w", db_write_cmd, CS_MORE|CS_SET_DOT,
397 1.114 uwe "Write the expressions at succeeding locations.",
398 1.114 uwe "[/bhl] address expression [expression ...]",NULL) },
399 1.98 martin { DDB_ADD_CMD("watch", db_watchpoint_cmd, CS_MORE,
400 1.98 martin "Set a watchpoint for a region. ","address[,size]",NULL) },
401 1.112 yamt { DDB_ADD_CMD("whatis", db_whatis_cmd, 0,
402 1.112 yamt "Describe what an address is", "address", NULL) },
403 1.98 martin { DDB_ADD_CMD("write", db_write_cmd, CS_MORE|CS_SET_DOT,
404 1.98 martin "Write the expressions at succeeding locations.",
405 1.98 martin "[/bhl] address expression [expression ...]",NULL) },
406 1.98 martin { DDB_ADD_CMD("x", db_examine_cmd, CS_SET_DOT,
407 1.98 martin "Display the address locations.",
408 1.98 martin "[/modifier] address[,count]",NULL) },
409 1.98 martin { DDB_ADD_CMD(NULL, NULL, 0, NULL, NULL, NULL) }
410 1.64 simonb };
411 1.64 simonb
412 1.64 simonb static const struct db_command *db_last_command = NULL;
413 1.80 yamt #if defined(DDB_COMMANDONENTER)
414 1.81 yamt char db_cmd_on_enter[DB_LINE_MAXLEN + 1] = ___STRING(DDB_COMMANDONENTER);
415 1.81 yamt #else /* defined(DDB_COMMANDONENTER) */
416 1.81 yamt char db_cmd_on_enter[DB_LINE_MAXLEN + 1] = "";
417 1.80 yamt #endif /* defined(DDB_COMMANDONENTER) */
418 1.80 yamt #define DB_LINE_SEP ';'
419 1.1 cgd
420 1.1 cgd /*
421 1.126 haad * Execute commandlist after ddb start
422 1.126 haad * This function goes through the command list created from commands and ';'
423 1.98 martin */
424 1.81 yamt static void
425 1.81 yamt db_execute_commandlist(const char *cmdlist)
426 1.81 yamt {
427 1.81 yamt const char *cmd = cmdlist;
428 1.81 yamt const struct db_command *dummy = NULL;
429 1.81 yamt
430 1.81 yamt while (*cmd != '\0') {
431 1.81 yamt const char *ep = cmd;
432 1.81 yamt
433 1.81 yamt while (*ep != '\0' && *ep != DB_LINE_SEP) {
434 1.81 yamt ep++;
435 1.81 yamt }
436 1.81 yamt db_set_line(cmd, ep);
437 1.98 martin db_command(&dummy);
438 1.81 yamt cmd = ep;
439 1.81 yamt if (*cmd == DB_LINE_SEP) {
440 1.81 yamt cmd++;
441 1.81 yamt }
442 1.81 yamt }
443 1.81 yamt }
444 1.81 yamt
445 1.126 haad /* Initialize ddb command tables */
446 1.102 martin void
447 1.98 martin db_init_commands(void)
448 1.98 martin {
449 1.101 martin static bool done = false;
450 1.98 martin
451 1.101 martin if (done) return;
452 1.101 martin done = true;
453 1.98 martin
454 1.103 martin /* register command tables */
455 1.103 martin (void)db_register_tbl_entry(DDB_BASE_CMD, &db_base_cmd_builtins);
456 1.98 martin #ifdef DB_MACHINE_COMMANDS
457 1.103 martin (void)db_register_tbl_entry(DDB_MACH_CMD, &db_mach_cmd_builtins);
458 1.98 martin #endif
459 1.103 martin (void)db_register_tbl_entry(DDB_SHOW_CMD, &db_show_cmd_builtins);
460 1.98 martin }
461 1.98 martin
462 1.98 martin
463 1.98 martin /*
464 1.98 martin * Add command table to the specified list
465 1.98 martin * Arg:
466 1.98 martin * int type specifies type of command table DDB_SHOW_CMD|DDB_BASE_CMD|DDB_MAC_CMD
467 1.98 martin * *cmd_tbl poiter to static allocated db_command table
468 1.98 martin *
469 1.126 haad * Command table must be NULL terminated array of struct db_command
470 1.98 martin */
471 1.98 martin int
472 1.98 martin db_register_tbl(uint8_t type, const struct db_command *cmd_tbl)
473 1.98 martin {
474 1.98 martin struct db_cmd_tbl_en *list_ent;
475 1.126 haad
476 1.126 haad /* empty list - ignore */
477 1.103 martin if (cmd_tbl->name == 0)
478 1.103 martin return 0;
479 1.103 martin
480 1.105 martin /* force builtin commands to be registered first */
481 1.105 martin db_init_commands();
482 1.105 martin
483 1.105 martin /* now create a list entry for this table */
484 1.129 ad list_ent = db_zalloc(sizeof(*list_ent));
485 1.103 martin if (list_ent == NULL)
486 1.103 martin return ENOMEM;
487 1.105 martin list_ent->db_cmd=cmd_tbl;
488 1.103 martin
489 1.105 martin /* and register it */
490 1.103 martin return db_register_tbl_entry(type, list_ent);
491 1.103 martin }
492 1.103 martin
493 1.103 martin static int
494 1.103 martin db_register_tbl_entry(uint8_t type, struct db_cmd_tbl_en *list_ent)
495 1.103 martin {
496 1.98 martin struct db_cmd_tbl_en_head *list;
497 1.98 martin
498 1.103 martin switch(type) {
499 1.103 martin case DDB_BASE_CMD:
500 1.103 martin list = &db_base_cmd_list;
501 1.103 martin break;
502 1.103 martin case DDB_SHOW_CMD:
503 1.103 martin list = &db_show_cmd_list;
504 1.103 martin break;
505 1.103 martin case DDB_MACH_CMD:
506 1.103 martin list = &db_mach_cmd_list;
507 1.103 martin break;
508 1.103 martin default:
509 1.103 martin return ENOENT;
510 1.98 martin }
511 1.103 martin
512 1.105 martin TAILQ_INSERT_TAIL(list, list_ent, db_cmd_next);
513 1.103 martin
514 1.98 martin return 0;
515 1.98 martin }
516 1.103 martin
517 1.98 martin /*
518 1.103 martin * Remove command table specified with db_cmd address == cmd_tbl
519 1.98 martin */
520 1.98 martin int
521 1.98 martin db_unregister_tbl(uint8_t type,const struct db_command *cmd_tbl)
522 1.98 martin {
523 1.98 martin struct db_cmd_tbl_en *list_ent;
524 1.98 martin struct db_cmd_tbl_en_head *list;
525 1.98 martin
526 1.103 martin /* find list on which the entry should live */
527 1.103 martin switch (type) {
528 1.98 martin case DDB_BASE_CMD:
529 1.98 martin list=&db_base_cmd_list;
530 1.98 martin break;
531 1.98 martin case DDB_SHOW_CMD:
532 1.98 martin list=&db_show_cmd_list;
533 1.98 martin break;
534 1.98 martin case DDB_MACH_CMD:
535 1.98 martin list=&db_mach_cmd_list;
536 1.98 martin break;
537 1.98 martin default:
538 1.103 martin return EINVAL;
539 1.98 martin }
540 1.103 martin
541 1.126 haad TAILQ_FOREACH (list_ent, list, db_cmd_next) {
542 1.98 martin if (list_ent->db_cmd == cmd_tbl){
543 1.98 martin TAILQ_REMOVE(list,
544 1.126 haad list_ent, db_cmd_next);
545 1.129 ad db_free(list_ent, sizeof(*list_ent));
546 1.105 martin return 0;
547 1.98 martin }
548 1.103 martin }
549 1.105 martin return ENOENT;
550 1.116 blymn }
551 1.103 martin
552 1.160 kre #ifndef _KERNEL
553 1.160 kre #define cnpollc(c) __nothing
554 1.160 kre #endif
555 1.160 kre
556 1.159 mrg /*
557 1.159 mrg * This function is called via db_trap() or directly from
558 1.159 mrg * machine trap code.
559 1.159 mrg */
560 1.64 simonb void
561 1.64 simonb db_command_loop(void)
562 1.64 simonb {
563 1.64 simonb label_t db_jmpbuf;
564 1.64 simonb label_t *savejmp;
565 1.64 simonb
566 1.64 simonb /*
567 1.64 simonb * Initialize 'prev' and 'next' to dot.
568 1.64 simonb */
569 1.64 simonb db_prev = db_dot;
570 1.64 simonb db_next = db_dot;
571 1.64 simonb
572 1.102 martin db_cmd_loop_done = false;
573 1.64 simonb
574 1.126 haad /* Init default command tables add machine, base,
575 1.126 haad show command tables to the list */
576 1.102 martin db_init_commands();
577 1.101 martin
578 1.126 haad /* save context for return from ddb */
579 1.64 simonb savejmp = db_recover;
580 1.64 simonb db_recover = &db_jmpbuf;
581 1.64 simonb (void) setjmp(&db_jmpbuf);
582 1.64 simonb
583 1.145 mrg /*
584 1.145 mrg * Execute default ddb start commands only if this is the
585 1.145 mrg * first entry into DDB, in case the start commands fault
586 1.145 mrg * and we recurse into here.
587 1.145 mrg */
588 1.145 mrg if (!savejmp)
589 1.145 mrg db_execute_commandlist(db_cmd_on_enter);
590 1.80 yamt
591 1.106 martin (void) setjmp(&db_jmpbuf);
592 1.64 simonb while (!db_cmd_loop_done) {
593 1.64 simonb if (db_print_position() != 0)
594 1.64 simonb db_printf("\n");
595 1.64 simonb db_output_line = 0;
596 1.159 mrg cnpollc(1);
597 1.64 simonb (void) db_read_line();
598 1.159 mrg cnpollc(0);
599 1.98 martin db_command(&db_last_command);
600 1.64 simonb }
601 1.64 simonb
602 1.64 simonb db_recover = savejmp;
603 1.64 simonb }
604 1.1 cgd
605 1.1 cgd /*
606 1.126 haad * Search command table for command prefix
607 1.1 cgd */
608 1.64 simonb static int
609 1.126 haad db_cmd_search_table(const char *name,
610 1.126 haad const struct db_command *table,
611 1.126 haad const struct db_command **cmdp)
612 1.1 cgd {
613 1.116 blymn
614 1.53 jdolecek const struct db_command *cmd;
615 1.108 uwe int result;
616 1.1 cgd
617 1.108 uwe result = CMD_NONE;
618 1.110 martin *cmdp = NULL;
619 1.126 haad
620 1.1 cgd for (cmd = table; cmd->name != 0; cmd++) {
621 1.64 simonb const char *lp;
622 1.64 simonb const char *rp;
623 1.64 simonb
624 1.64 simonb lp = name;
625 1.64 simonb rp = cmd->name;
626 1.108 uwe while (*lp != '\0' && *lp == *rp) {
627 1.107 martin rp++;
628 1.64 simonb lp++;
629 1.64 simonb }
630 1.108 uwe
631 1.108 uwe if (*lp != '\0') /* mismatch or extra chars in name */
632 1.108 uwe continue;
633 1.108 uwe
634 1.126 haad if (*rp == '\0') { /* exact match */
635 1.107 martin *cmdp = cmd;
636 1.126 haad return (CMD_EXACT);
637 1.107 martin }
638 1.108 uwe
639 1.108 uwe /* prefix match: end of name, not end of command */
640 1.108 uwe if (result == CMD_NONE) {
641 1.126 haad result = CMD_PREFIX;
642 1.108 uwe *cmdp = cmd;
643 1.108 uwe }
644 1.126 haad else if (result == CMD_PREFIX) {
645 1.108 uwe result = CMD_AMBIGUOUS;
646 1.108 uwe *cmdp = NULL;
647 1.1 cgd }
648 1.1 cgd }
649 1.108 uwe
650 1.1 cgd return (result);
651 1.1 cgd }
652 1.1 cgd
653 1.126 haad
654 1.126 haad /*
655 1.126 haad * Search list of command tables for command
656 1.126 haad */
657 1.126 haad static int
658 1.126 haad db_cmd_search(const char *name,
659 1.126 haad struct db_cmd_tbl_en_head *list_head,
660 1.126 haad const struct db_command **cmdp)
661 1.126 haad {
662 1.126 haad struct db_cmd_tbl_en *list_ent;
663 1.126 haad const struct db_command *found_command;
664 1.126 haad bool accept_prefix_match;
665 1.126 haad int result;
666 1.126 haad
667 1.126 haad result = CMD_NONE;
668 1.126 haad found_command = NULL;
669 1.126 haad accept_prefix_match = true;
670 1.126 haad
671 1.126 haad TAILQ_FOREACH(list_ent, list_head, db_cmd_next) {
672 1.126 haad const struct db_command *cmd;
673 1.126 haad int found;
674 1.126 haad
675 1.126 haad found = db_cmd_search_table(name, list_ent->db_cmd, &cmd);
676 1.126 haad if (found == CMD_EXACT) {
677 1.126 haad result = CMD_EXACT;
678 1.126 haad found_command = cmd;
679 1.126 haad break;
680 1.126 haad }
681 1.126 haad
682 1.126 haad if (found == CMD_PREFIX) {
683 1.126 haad if (accept_prefix_match) {
684 1.126 haad /*
685 1.126 haad * Continue search, but note current result
686 1.126 haad * in case we won't find anything else.
687 1.126 haad */
688 1.126 haad accept_prefix_match = false;
689 1.126 haad result = CMD_PREFIX;
690 1.126 haad found_command = cmd;
691 1.126 haad } else {
692 1.126 haad /*
693 1.126 haad * Watch out for globally ambiguous
694 1.126 haad * prefix match that is not locally
695 1.126 haad * ambiguous - with one match in one
696 1.126 haad * table and another match(es) in
697 1.126 haad * another table.
698 1.126 haad */
699 1.126 haad result = CMD_AMBIGUOUS;
700 1.126 haad found_command = NULL;
701 1.126 haad }
702 1.126 haad }
703 1.126 haad else if (found == CMD_AMBIGUOUS) {
704 1.126 haad accept_prefix_match = false;
705 1.126 haad result = CMD_AMBIGUOUS;
706 1.126 haad found_command = NULL;
707 1.126 haad }
708 1.126 haad }
709 1.126 haad
710 1.126 haad *cmdp = found_command;
711 1.126 haad return result;
712 1.126 haad }
713 1.126 haad
714 1.126 haad static void
715 1.126 haad db_cmd_search_failed(char *name, int search_result)
716 1.126 haad {
717 1.126 haad if (search_result == CMD_NONE)
718 1.126 haad db_printf("No such command: %s\n", name);
719 1.126 haad else
720 1.126 haad db_printf("Ambiguous command: %s\n", name);
721 1.126 haad }
722 1.126 haad
723 1.126 haad
724 1.98 martin /*
725 1.126 haad * List commands to the console.
726 1.98 martin */
727 1.64 simonb static void
728 1.98 martin db_cmd_list(const struct db_cmd_tbl_en_head *list)
729 1.1 cgd {
730 1.98 martin
731 1.98 martin struct db_cmd_tbl_en *list_ent;
732 1.98 martin const struct db_command *table;
733 1.105 martin size_t i, j, w, columns, lines, numcmds, width=0;
734 1.53 jdolecek const char *p;
735 1.1 cgd
736 1.105 martin TAILQ_FOREACH(list_ent,list,db_cmd_next) {
737 1.105 martin table = list_ent->db_cmd;
738 1.105 martin for (i = 0; table[i].name != NULL; i++) {
739 1.98 martin w = strlen(table[i].name);
740 1.98 martin if (w > width)
741 1.98 martin width = w;
742 1.98 martin }
743 1.32 lukem }
744 1.98 martin
745 1.32 lukem width = DB_NEXT_TAB(width);
746 1.32 lukem
747 1.32 lukem columns = db_max_width / width;
748 1.32 lukem if (columns == 0)
749 1.32 lukem columns = 1;
750 1.98 martin
751 1.105 martin TAILQ_FOREACH(list_ent,list,db_cmd_next) {
752 1.105 martin table = list_ent->db_cmd;
753 1.98 martin
754 1.105 martin for (numcmds = 0; table[numcmds].name != NULL; numcmds++)
755 1.105 martin ;
756 1.105 martin lines = (numcmds + columns - 1) / columns;
757 1.116 blymn
758 1.98 martin for (i = 0; i < lines; i++) {
759 1.98 martin for (j = 0; j < columns; j++) {
760 1.98 martin p = table[j * lines + i].name;
761 1.98 martin if (p)
762 1.98 martin db_printf("%s", p);
763 1.105 martin if (j * lines + i + lines >= numcmds) {
764 1.98 martin db_putchar('\n');
765 1.98 martin break;
766 1.98 martin }
767 1.98 martin if (p) {
768 1.98 martin w = strlen(p);
769 1.98 martin while (w < width) {
770 1.98 martin w = DB_NEXT_TAB(w);
771 1.98 martin db_putchar('\t');
772 1.98 martin }
773 1.98 martin }
774 1.98 martin }
775 1.98 martin }
776 1.98 martin }
777 1.98 martin return;
778 1.98 martin }
779 1.98 martin
780 1.98 martin /*
781 1.126 haad * Read complete command with all subcommands, starting with current
782 1.126 haad * db_tok_string. If subcommand is missing, print the list of all
783 1.126 haad * subcommands. If command/subcommand is not found, print an error
784 1.126 haad * message. Returns pointer to "leaf" command or NULL.
785 1.98 martin */
786 1.126 haad static const struct db_command *
787 1.126 haad db_read_command(void)
788 1.98 martin {
789 1.126 haad const struct db_command *command;
790 1.126 haad struct db_cmd_tbl_en_head *list;
791 1.126 haad int found;
792 1.126 haad int t;
793 1.98 martin
794 1.126 haad list = &db_base_cmd_list;
795 1.126 haad do {
796 1.126 haad found = db_cmd_search(db_tok_string, list, &command);
797 1.126 haad if (command == NULL) {
798 1.126 haad db_cmd_search_failed(db_tok_string, found);
799 1.126 haad db_flush_lex();
800 1.126 haad return NULL;
801 1.126 haad }
802 1.98 martin
803 1.126 haad if (command->flag == CS_SHOW)
804 1.126 haad list = &db_show_cmd_list;
805 1.126 haad else if (command->flag == CS_MACH)
806 1.126 haad list = &db_mach_cmd_list;
807 1.126 haad else if (command->flag == CS_COMPAT)
808 1.126 haad /* same list */;
809 1.126 haad else
810 1.126 haad break; /* expect no more subcommands */
811 1.98 martin
812 1.126 haad t = db_read_token(); /* read subcommand */
813 1.126 haad if (t != tIDENT) {
814 1.126 haad /* if none given - just print all of them */
815 1.126 haad db_cmd_list(list);
816 1.126 haad db_flush_lex();
817 1.126 haad return NULL;
818 1.32 lukem }
819 1.126 haad } while (list != NULL);
820 1.102 martin
821 1.126 haad return command;
822 1.1 cgd }
823 1.1 cgd
824 1.98 martin /*
825 1.126 haad * Parse command line and execute apropriate function.
826 1.98 martin */
827 1.64 simonb static void
828 1.98 martin db_command(const struct db_command **last_cmdp)
829 1.1 cgd {
830 1.128 haad static db_expr_t last_count = 0;
831 1.163 uwe
832 1.164 uwe int t;
833 1.164 uwe const struct db_command *command;
834 1.164 uwe db_expr_t addr, count;
835 1.164 uwe bool have_addr;
836 1.164 uwe char modif[TOK_STRING_SIZE];
837 1.98 martin
838 1.126 haad command = NULL;
839 1.163 uwe have_addr = false;
840 1.162 uwe count = -1;
841 1.162 uwe
842 1.1 cgd t = db_read_token();
843 1.38 jhawk if ((t == tEOL) || (t == tCOMMA)) {
844 1.1 cgd /*
845 1.64 simonb * An empty line repeats last command, at 'next'.
846 1.64 simonb * Only a count repeats the last command with the new count.
847 1.64 simonb */
848 1.98 martin command = *last_cmdp;
849 1.98 martin
850 1.98 martin if (!command)
851 1.98 martin return;
852 1.98 martin
853 1.64 simonb addr = (db_expr_t)db_next;
854 1.64 simonb if (t == tCOMMA) {
855 1.64 simonb if (!db_expression(&count)) {
856 1.64 simonb db_printf("Count missing\n");
857 1.64 simonb db_flush_lex();
858 1.64 simonb return;
859 1.64 simonb }
860 1.64 simonb } else
861 1.64 simonb count = last_count;
862 1.64 simonb modif[0] = '\0';
863 1.64 simonb db_skip_to_eol();
864 1.98 martin
865 1.64 simonb } else if (t == tEXCL) {
866 1.64 simonb db_fncall(0, 0, 0, NULL);
867 1.64 simonb return;
868 1.98 martin
869 1.64 simonb } else if (t != tIDENT) {
870 1.64 simonb db_printf("?\n");
871 1.64 simonb db_flush_lex();
872 1.64 simonb return;
873 1.98 martin
874 1.64 simonb } else {
875 1.98 martin
876 1.126 haad command = db_read_command();
877 1.126 haad if (command == NULL)
878 1.101 martin return;
879 1.98 martin
880 1.98 martin if ((command->flag & CS_OWN) == 0) {
881 1.98 martin
882 1.64 simonb /*
883 1.64 simonb * Standard syntax:
884 1.64 simonb * command [/modifier] [addr] [,count]
885 1.64 simonb */
886 1.98 martin t = db_read_token(); /* get modifier */
887 1.116 blymn if (t == tSLASH) {
888 1.64 simonb t = db_read_token();
889 1.64 simonb if (t != tIDENT) {
890 1.64 simonb db_printf("Bad modifier\n");
891 1.64 simonb db_flush_lex();
892 1.64 simonb return;
893 1.64 simonb }
894 1.98 martin /* save modifier */
895 1.71 itojun strlcpy(modif, db_tok_string, sizeof(modif));
896 1.116 blymn
897 1.64 simonb } else {
898 1.64 simonb db_unread_token(t);
899 1.64 simonb modif[0] = '\0';
900 1.64 simonb }
901 1.64 simonb
902 1.98 martin if (db_expression(&addr)) { /*get address*/
903 1.64 simonb db_dot = (db_addr_t) addr;
904 1.64 simonb db_last_addr = db_dot;
905 1.95 thorpej have_addr = true;
906 1.64 simonb } else {
907 1.64 simonb addr = (db_expr_t) db_dot;
908 1.64 simonb }
909 1.98 martin
910 1.64 simonb t = db_read_token();
911 1.98 martin if (t == tCOMMA) { /*Get count*/
912 1.64 simonb if (!db_expression(&count)) {
913 1.64 simonb db_printf("Count missing\n");
914 1.64 simonb db_flush_lex();
915 1.64 simonb return;
916 1.64 simonb }
917 1.116 blymn } else {
918 1.64 simonb db_unread_token(t);
919 1.64 simonb }
920 1.98 martin if ((command->flag & CS_MORE) == 0) {
921 1.64 simonb db_skip_to_eol();
922 1.64 simonb }
923 1.1 cgd }
924 1.1 cgd }
925 1.98 martin
926 1.126 haad if (command != NULL && command->flag & CS_NOREPEAT) {
927 1.98 martin *last_cmdp = NULL;
928 1.98 martin last_count = 0;
929 1.98 martin } else {
930 1.98 martin *last_cmdp = command;
931 1.98 martin last_count = count;
932 1.98 martin }
933 1.98 martin
934 1.126 haad
935 1.98 martin if (command != NULL) {
936 1.1 cgd /*
937 1.64 simonb * Execute the command.
938 1.1 cgd */
939 1.107 martin if (command->fcn != NULL)
940 1.107 martin (*command->fcn)(addr, have_addr, count, modif);
941 1.64 simonb
942 1.98 martin if (command->flag & CS_SET_DOT) {
943 1.64 simonb /*
944 1.64 simonb * If command changes dot, set dot to
945 1.64 simonb * previous address displayed (if 'ed' style).
946 1.64 simonb */
947 1.64 simonb if (db_ed_style)
948 1.64 simonb db_dot = db_prev;
949 1.64 simonb else
950 1.64 simonb db_dot = db_next;
951 1.64 simonb } else {
952 1.64 simonb /*
953 1.64 simonb * If command does not change dot,
954 1.64 simonb * set 'next' location to be the same.
955 1.64 simonb */
956 1.64 simonb db_next = db_dot;
957 1.1 cgd }
958 1.1 cgd }
959 1.1 cgd }
960 1.1 cgd
961 1.98 martin /*
962 1.98 martin * Print help for commands
963 1.98 martin */
964 1.98 martin static void
965 1.98 martin db_help_print_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
966 1.126 haad const char *modif)
967 1.98 martin {
968 1.126 haad const struct db_command *command;
969 1.126 haad int t;
970 1.116 blymn
971 1.126 haad t = db_read_token();
972 1.116 blymn
973 1.98 martin /* is there another command after the "help"? */
974 1.126 haad if (t != tIDENT) {
975 1.126 haad /* print base commands */
976 1.126 haad db_cmd_list(&db_base_cmd_list);
977 1.126 haad return;
978 1.126 haad }
979 1.98 martin
980 1.126 haad command = db_read_command();
981 1.126 haad if (command == NULL)
982 1.126 haad return;
983 1.98 martin
984 1.98 martin #ifdef DDB_VERBOSE_HELP
985 1.126 haad db_printf("Command: %s\n", command->name);
986 1.126 haad if (command->cmd_descr != NULL)
987 1.126 haad db_printf(" Description: %s\n", command->cmd_descr);
988 1.126 haad if (command->cmd_arg != NULL)
989 1.126 haad db_printf(" Arguments: %s\n", command->cmd_arg);
990 1.126 haad if (command->cmd_arg_help != NULL)
991 1.126 haad db_printf(" Arguments description:\n%s\n",
992 1.126 haad command->cmd_arg_help);
993 1.126 haad if ((command->cmd_arg == NULL) && (command->cmd_descr == NULL))
994 1.126 haad db_printf(" No help message.\n");
995 1.98 martin #endif
996 1.98 martin
997 1.126 haad db_skip_to_eol();
998 1.98 martin }
999 1.110 martin
1000 1.4 brezak /*ARGSUSED*/
1001 1.64 simonb static void
1002 1.94 matt db_map_print_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
1003 1.90 christos const char *modif)
1004 1.64 simonb {
1005 1.143 christos #ifdef _KERNEL
1006 1.95 thorpej bool full = false;
1007 1.64 simonb
1008 1.64 simonb if (modif[0] == 'f')
1009 1.95 thorpej full = true;
1010 1.60 matt
1011 1.95 thorpej if (have_addr == false)
1012 1.130 nakayama addr = (db_expr_t)(uintptr_t)db_read_ptr("kernel_map");
1013 1.4 brezak
1014 1.120 rmind uvm_map_printit((struct vm_map *)(uintptr_t) addr, full, db_printf);
1015 1.129 ad #endif /* XXX CRASH(8) */
1016 1.4 brezak }
1017 1.4 brezak
1018 1.4 brezak /*ARGSUSED*/
1019 1.64 simonb static void
1020 1.94 matt db_object_print_cmd(db_expr_t addr, bool have_addr,
1021 1.91 christos db_expr_t count, const char *modif)
1022 1.64 simonb {
1023 1.143 christos #ifdef _KERNEL /* XXX CRASH(8) */
1024 1.95 thorpej bool full = false;
1025 1.64 simonb
1026 1.64 simonb if (modif[0] == 'f')
1027 1.95 thorpej full = true;
1028 1.4 brezak
1029 1.120 rmind uvm_object_printit((struct uvm_object *)(uintptr_t) addr, full,
1030 1.66 scw db_printf);
1031 1.129 ad #endif
1032 1.24 mrg }
1033 1.24 mrg
1034 1.24 mrg /*ARGSUSED*/
1035 1.64 simonb static void
1036 1.94 matt db_page_print_cmd(db_expr_t addr, bool have_addr,
1037 1.91 christos db_expr_t count, const char *modif)
1038 1.64 simonb {
1039 1.143 christos #ifdef _KERNEL /* XXX CRASH(8) */
1040 1.95 thorpej bool full = false;
1041 1.64 simonb
1042 1.64 simonb if (modif[0] == 'f')
1043 1.95 thorpej full = true;
1044 1.24 mrg
1045 1.120 rmind uvm_page_printit((struct vm_page *)(uintptr_t) addr, full, db_printf);
1046 1.129 ad #endif
1047 1.36 chs }
1048 1.36 chs
1049 1.36 chs /*ARGSUSED*/
1050 1.64 simonb static void
1051 1.94 matt db_show_all_pages(db_expr_t addr, bool have_addr,
1052 1.91 christos db_expr_t count, const char *modif)
1053 1.84 bjh21 {
1054 1.84 bjh21
1055 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1056 1.84 bjh21 uvm_page_printall(db_printf);
1057 1.129 ad #endif
1058 1.84 bjh21 }
1059 1.84 bjh21
1060 1.84 bjh21 /*ARGSUSED*/
1061 1.84 bjh21 static void
1062 1.94 matt db_buf_print_cmd(db_expr_t addr, bool have_addr,
1063 1.91 christos db_expr_t count, const char *modif)
1064 1.36 chs {
1065 1.143 christos #ifdef _KERNEL /* XXX CRASH(8) */
1066 1.95 thorpej bool full = false;
1067 1.64 simonb
1068 1.36 chs if (modif[0] == 'f')
1069 1.95 thorpej full = true;
1070 1.36 chs
1071 1.120 rmind vfs_buf_print((struct buf *)(uintptr_t) addr, full, db_printf);
1072 1.129 ad #endif
1073 1.65 simonb }
1074 1.65 simonb
1075 1.65 simonb /*ARGSUSED*/
1076 1.65 simonb static void
1077 1.94 matt db_event_print_cmd(db_expr_t addr, bool have_addr,
1078 1.91 christos db_expr_t count, const char *modif)
1079 1.65 simonb {
1080 1.132 mrg bool showzero = false;
1081 1.132 mrg bool showall = true;
1082 1.132 mrg bool showintr = false;
1083 1.132 mrg bool showtrap = false;
1084 1.132 mrg bool showmisc = false;
1085 1.131 ad struct evcnt ev, *evp;
1086 1.131 ad char buf[80];
1087 1.132 mrg int i;
1088 1.65 simonb
1089 1.132 mrg i = 0;
1090 1.132 mrg while (modif[i]) {
1091 1.132 mrg switch (modif[i]) {
1092 1.132 mrg case 'f':
1093 1.132 mrg showzero = true;
1094 1.132 mrg break;
1095 1.132 mrg case 'i':
1096 1.132 mrg showintr = true;
1097 1.132 mrg showall = false;
1098 1.132 mrg break;
1099 1.132 mrg case 't':
1100 1.132 mrg showtrap = true;
1101 1.132 mrg showall = false;
1102 1.132 mrg break;
1103 1.132 mrg case 'm':
1104 1.132 mrg showmisc = true;
1105 1.132 mrg showall = false;
1106 1.132 mrg break;
1107 1.132 mrg }
1108 1.132 mrg i++;
1109 1.132 mrg }
1110 1.132 mrg
1111 1.132 mrg if (showall)
1112 1.132 mrg showmisc = showintr = showtrap = true;
1113 1.65 simonb
1114 1.131 ad evp = (struct evcnt *)db_read_ptr("allevents");
1115 1.131 ad while (evp != NULL) {
1116 1.131 ad db_read_bytes((db_addr_t)evp, sizeof(ev), (char *)&ev);
1117 1.131 ad evp = ev.ev_list.tqe_next;
1118 1.132 mrg if (ev.ev_count == 0 && !showzero)
1119 1.132 mrg continue;
1120 1.132 mrg if (ev.ev_type == EVCNT_TYPE_INTR && !showintr)
1121 1.132 mrg continue;
1122 1.132 mrg if (ev.ev_type == EVCNT_TYPE_TRAP && !showtrap)
1123 1.132 mrg continue;
1124 1.132 mrg if (ev.ev_type == EVCNT_TYPE_MISC && !showmisc)
1125 1.131 ad continue;
1126 1.131 ad db_read_bytes((db_addr_t)ev.ev_group, ev.ev_grouplen + 1, buf);
1127 1.131 ad db_printf("evcnt type %d: %s ", ev.ev_type, buf);
1128 1.131 ad db_read_bytes((db_addr_t)ev.ev_name, ev.ev_namelen + 1, buf);
1129 1.131 ad db_printf("%s = %lld\n", buf, (long long)ev.ev_count);
1130 1.131 ad }
1131 1.36 chs }
1132 1.36 chs
1133 1.36 chs /*ARGSUSED*/
1134 1.64 simonb static void
1135 1.94 matt db_vnode_print_cmd(db_expr_t addr, bool have_addr,
1136 1.91 christos db_expr_t count, const char *modif)
1137 1.36 chs {
1138 1.143 christos #ifdef _KERNEL /* XXX CRASH(8) */
1139 1.95 thorpej bool full = false;
1140 1.64 simonb
1141 1.36 chs if (modif[0] == 'f')
1142 1.95 thorpej full = true;
1143 1.36 chs
1144 1.120 rmind vfs_vnode_print((struct vnode *)(uintptr_t) addr, full, db_printf);
1145 1.129 ad #endif
1146 1.74 dbj }
1147 1.74 dbj
1148 1.125 cegger /*ARGSUSED*/
1149 1.125 cegger static void
1150 1.148 joerg db_vnode_lock_print_cmd(db_expr_t addr, bool have_addr,
1151 1.148 joerg db_expr_t count, const char *modif)
1152 1.148 joerg {
1153 1.148 joerg #ifdef _KERNEL /* XXX CRASH(8) */
1154 1.148 joerg bool full = false;
1155 1.148 joerg
1156 1.148 joerg if (modif[0] == 'f')
1157 1.148 joerg full = true;
1158 1.148 joerg
1159 1.148 joerg vfs_vnode_lock_print((struct vnode *)(uintptr_t) addr, full, db_printf);
1160 1.148 joerg #endif
1161 1.148 joerg }
1162 1.148 joerg
1163 1.148 joerg /*ARGSUSED*/
1164 1.148 joerg static void
1165 1.125 cegger db_vmem_print_cmd(db_expr_t addr, bool have_addr,
1166 1.125 cegger db_expr_t count, const char *modif)
1167 1.125 cegger {
1168 1.127 yamt
1169 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1170 1.125 cegger vmem_print((uintptr_t) addr, modif, db_printf);
1171 1.129 ad #endif
1172 1.125 cegger }
1173 1.125 cegger
1174 1.74 dbj static void
1175 1.94 matt db_mount_print_cmd(db_expr_t addr, bool have_addr,
1176 1.91 christos db_expr_t count, const char *modif)
1177 1.74 dbj {
1178 1.143 christos #ifdef _KERNEL /* XXX CRASH(8) */
1179 1.95 thorpej bool full = false;
1180 1.74 dbj
1181 1.74 dbj if (modif[0] == 'f')
1182 1.95 thorpej full = true;
1183 1.74 dbj
1184 1.120 rmind vfs_mount_print((struct mount *)(uintptr_t) addr, full, db_printf);
1185 1.129 ad #endif
1186 1.4 brezak }
1187 1.4 brezak
1188 1.165 joerg static void
1189 1.165 joerg db_show_all_mount(db_expr_t addr, bool have_addr, db_expr_t count, const char *modif)
1190 1.165 joerg {
1191 1.165 joerg #ifdef _KERNEL /* XXX CRASH(8) */
1192 1.165 joerg bool full = false;
1193 1.165 joerg
1194 1.165 joerg if (modif[0] == 'f')
1195 1.165 joerg full = true;
1196 1.165 joerg
1197 1.165 joerg vfs_mount_print_all(full, db_printf);
1198 1.165 joerg #endif
1199 1.165 joerg }
1200 1.165 joerg
1201 1.31 thorpej /*ARGSUSED*/
1202 1.64 simonb static void
1203 1.94 matt db_mbuf_print_cmd(db_expr_t addr, bool have_addr,
1204 1.91 christos db_expr_t count, const char *modif)
1205 1.83 yamt {
1206 1.83 yamt
1207 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1208 1.120 rmind m_print((const struct mbuf *)(uintptr_t) addr, modif, db_printf);
1209 1.129 ad #endif
1210 1.83 yamt }
1211 1.83 yamt
1212 1.83 yamt /*ARGSUSED*/
1213 1.83 yamt static void
1214 1.94 matt db_pool_print_cmd(db_expr_t addr, bool have_addr,
1215 1.91 christos db_expr_t count, const char *modif)
1216 1.31 thorpej {
1217 1.64 simonb
1218 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1219 1.120 rmind pool_printit((struct pool *)(uintptr_t) addr, modif, db_printf);
1220 1.129 ad #endif
1221 1.51 chs }
1222 1.31 thorpej
1223 1.51 chs /*ARGSUSED*/
1224 1.64 simonb static void
1225 1.94 matt db_namecache_print_cmd(db_expr_t addr, bool have_addr,
1226 1.91 christos db_expr_t count, const char *modif)
1227 1.51 chs {
1228 1.64 simonb
1229 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1230 1.120 rmind namecache_print((struct vnode *)(uintptr_t) addr, db_printf);
1231 1.129 ad #endif
1232 1.51 chs }
1233 1.51 chs
1234 1.51 chs /*ARGSUSED*/
1235 1.64 simonb static void
1236 1.94 matt db_uvmexp_print_cmd(db_expr_t addr, bool have_addr,
1237 1.91 christos db_expr_t count, const char *modif)
1238 1.51 chs {
1239 1.64 simonb
1240 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1241 1.51 chs uvmexp_print(db_printf);
1242 1.129 ad #endif
1243 1.31 thorpej }
1244 1.31 thorpej
1245 1.154 msaitoh /*ARGSUSED */
1246 1.154 msaitoh static void
1247 1.154 msaitoh db_socket_print_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
1248 1.154 msaitoh const char *modif)
1249 1.154 msaitoh {
1250 1.154 msaitoh
1251 1.154 msaitoh #ifdef _KERNEL /* XXX CRASH(8) */
1252 1.154 msaitoh socket_print(modif, db_printf);
1253 1.154 msaitoh #endif
1254 1.154 msaitoh }
1255 1.154 msaitoh
1256 1.136 mrg #ifdef KERNHIST
1257 1.118 skrll /*ARGSUSED*/
1258 1.118 skrll static void
1259 1.136 mrg db_kernhist_print_cmd(db_expr_t addr, bool have_addr,
1260 1.118 skrll db_expr_t count, const char *modif)
1261 1.118 skrll {
1262 1.118 skrll
1263 1.161 mrg if (!have_addr)
1264 1.161 mrg addr = 0;
1265 1.156 mrg kernhist_print((void *)(uintptr_t)addr, count, modif, db_printf);
1266 1.118 skrll }
1267 1.118 skrll #endif
1268 1.118 skrll
1269 1.92 ad /*ARGSUSED*/
1270 1.92 ad static void
1271 1.94 matt db_lock_print_cmd(db_expr_t addr, bool have_addr,
1272 1.92 ad db_expr_t count, const char *modif)
1273 1.92 ad {
1274 1.92 ad
1275 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1276 1.152 ozaki lockdebug_lock_print(have_addr ? (void *)(uintptr_t)addr : NULL,
1277 1.152 ozaki db_printf);
1278 1.129 ad #endif
1279 1.92 ad }
1280 1.92 ad
1281 1.150 ozaki static void
1282 1.151 ozaki db_show_all_locks(db_expr_t addr, bool have_addr,
1283 1.151 ozaki db_expr_t count, const char *modif)
1284 1.151 ozaki {
1285 1.151 ozaki
1286 1.151 ozaki #ifdef _KERNEL /* XXX CRASH(8) */
1287 1.151 ozaki lockdebug_show_all_locks(db_printf, modif);
1288 1.151 ozaki #endif
1289 1.151 ozaki }
1290 1.151 ozaki
1291 1.151 ozaki static void
1292 1.166 ad db_show_all_freelists(db_expr_t addr, bool have_addr,
1293 1.166 ad db_expr_t count, const char *modif)
1294 1.166 ad {
1295 1.166 ad
1296 1.166 ad #ifdef _KERNEL /* XXX CRASH(8) */
1297 1.166 ad uvm_page_print_freelists(db_printf);
1298 1.166 ad #endif
1299 1.166 ad }
1300 1.166 ad
1301 1.166 ad static void
1302 1.153 ozaki db_show_lockstats(db_expr_t addr, bool have_addr,
1303 1.150 ozaki db_expr_t count, const char *modif)
1304 1.150 ozaki {
1305 1.150 ozaki
1306 1.150 ozaki #ifdef _KERNEL /* XXX CRASH(8) */
1307 1.153 ozaki lockdebug_show_lockstats(db_printf);
1308 1.150 ozaki #endif
1309 1.150 ozaki }
1310 1.150 ozaki
1311 1.1 cgd /*
1312 1.1 cgd * Call random function:
1313 1.1 cgd * !expr(arg,arg,arg)
1314 1.1 cgd */
1315 1.16 christos /*ARGSUSED*/
1316 1.64 simonb static void
1317 1.94 matt db_fncall(db_expr_t addr, bool have_addr,
1318 1.91 christos db_expr_t count, const char *modif)
1319 1.1 cgd {
1320 1.129 ad #ifdef _KERNEL
1321 1.1 cgd db_expr_t fn_addr;
1322 1.1 cgd #define MAXARGS 11
1323 1.1 cgd db_expr_t args[MAXARGS];
1324 1.1 cgd int nargs = 0;
1325 1.1 cgd db_expr_t retval;
1326 1.64 simonb db_expr_t (*func)(db_expr_t, ...);
1327 1.1 cgd int t;
1328 1.1 cgd
1329 1.1 cgd if (!db_expression(&fn_addr)) {
1330 1.64 simonb db_printf("Bad function\n");
1331 1.64 simonb db_flush_lex();
1332 1.64 simonb return;
1333 1.1 cgd }
1334 1.120 rmind func = (db_expr_t (*)(db_expr_t, ...))(uintptr_t) fn_addr;
1335 1.1 cgd
1336 1.1 cgd t = db_read_token();
1337 1.1 cgd if (t == tLPAREN) {
1338 1.64 simonb if (db_expression(&args[0])) {
1339 1.64 simonb nargs++;
1340 1.64 simonb while ((t = db_read_token()) == tCOMMA) {
1341 1.64 simonb if (nargs == MAXARGS) {
1342 1.64 simonb db_printf("Too many arguments\n");
1343 1.64 simonb db_flush_lex();
1344 1.64 simonb return;
1345 1.64 simonb }
1346 1.64 simonb if (!db_expression(&args[nargs])) {
1347 1.64 simonb db_printf("Argument missing\n");
1348 1.64 simonb db_flush_lex();
1349 1.64 simonb return;
1350 1.64 simonb }
1351 1.64 simonb nargs++;
1352 1.64 simonb }
1353 1.64 simonb db_unread_token(t);
1354 1.64 simonb }
1355 1.64 simonb if (db_read_token() != tRPAREN) {
1356 1.64 simonb db_printf("?\n");
1357 1.1 cgd db_flush_lex();
1358 1.1 cgd return;
1359 1.1 cgd }
1360 1.1 cgd }
1361 1.1 cgd db_skip_to_eol();
1362 1.1 cgd
1363 1.1 cgd while (nargs < MAXARGS) {
1364 1.64 simonb args[nargs++] = 0;
1365 1.1 cgd }
1366 1.1 cgd
1367 1.1 cgd retval = (*func)(args[0], args[1], args[2], args[3], args[4],
1368 1.20 christos args[5], args[6], args[7], args[8], args[9]);
1369 1.45 jhawk db_printf("%s\n", db_num_to_str(retval));
1370 1.129 ad #else /* _KERNEL */
1371 1.129 ad db_printf("This command can only be used in-kernel.\n");
1372 1.129 ad #endif /* _KERNEL */
1373 1.23 scottr }
1374 1.23 scottr
1375 1.64 simonb static void
1376 1.94 matt db_reboot_cmd(db_expr_t addr, bool have_addr,
1377 1.91 christos db_expr_t count, const char *modif)
1378 1.23 scottr {
1379 1.129 ad #ifdef _KERNEL
1380 1.23 scottr db_expr_t bootflags;
1381 1.23 scottr
1382 1.23 scottr /* Flags, default to RB_AUTOBOOT */
1383 1.23 scottr if (!db_expression(&bootflags))
1384 1.23 scottr bootflags = (db_expr_t)RB_AUTOBOOT;
1385 1.23 scottr if (db_read_token() != tEOL) {
1386 1.64 simonb db_error("?\n");
1387 1.64 simonb /*NOTREACHED*/
1388 1.23 scottr }
1389 1.47 sommerfe /*
1390 1.47 sommerfe * We are leaving DDB, never to return upward.
1391 1.47 sommerfe * Clear db_recover so that we can debug faults in functions
1392 1.47 sommerfe * called from cpu_reboot.
1393 1.47 sommerfe */
1394 1.47 sommerfe db_recover = 0;
1395 1.155 mrg /* Avoid all mutex errors */
1396 1.155 mrg lockdebug_dismiss();
1397 1.137 mrg panicstr = "reboot forced via kernel debugger";
1398 1.158 mrg /* Make it possible to break into the debugger again */
1399 1.158 mrg spl0();
1400 1.167 thorpej kern_reboot((int)bootflags, NULL);
1401 1.129 ad #else /* _KERNEL */
1402 1.129 ad db_printf("This command can only be used in-kernel.\n");
1403 1.129 ad #endif /* _KERNEL */
1404 1.41 jhawk }
1405 1.41 jhawk
1406 1.64 simonb static void
1407 1.94 matt db_sifting_cmd(db_expr_t addr, bool have_addr,
1408 1.91 christos db_expr_t count, const char *modif)
1409 1.41 jhawk {
1410 1.41 jhawk int mode, t;
1411 1.41 jhawk
1412 1.41 jhawk t = db_read_token();
1413 1.41 jhawk if (t == tSLASH) {
1414 1.41 jhawk t = db_read_token();
1415 1.41 jhawk if (t != tIDENT) {
1416 1.41 jhawk bad_modifier:
1417 1.41 jhawk db_printf("Bad modifier\n");
1418 1.41 jhawk db_flush_lex();
1419 1.41 jhawk return;
1420 1.41 jhawk }
1421 1.41 jhawk if (!strcmp(db_tok_string, "F"))
1422 1.41 jhawk mode = 'F';
1423 1.41 jhawk else
1424 1.41 jhawk goto bad_modifier;
1425 1.41 jhawk t = db_read_token();
1426 1.41 jhawk } else
1427 1.41 jhawk mode = 0;
1428 1.41 jhawk
1429 1.51 chs if (t == tIDENT)
1430 1.41 jhawk db_sifting(db_tok_string, mode);
1431 1.41 jhawk else {
1432 1.41 jhawk db_printf("Bad argument (non-string)\n");
1433 1.41 jhawk db_flush_lex();
1434 1.41 jhawk }
1435 1.43 jhawk }
1436 1.43 jhawk
1437 1.64 simonb static void
1438 1.94 matt db_stack_trace_cmd(db_expr_t addr, bool have_addr, db_expr_t count, const char *modif)
1439 1.43 jhawk {
1440 1.79 drochner register const char *cp = modif;
1441 1.70 atatat register char c;
1442 1.70 atatat void (*pr)(const char *, ...);
1443 1.70 atatat
1444 1.70 atatat pr = db_printf;
1445 1.70 atatat while ((c = *cp++) != 0)
1446 1.70 atatat if (c == 'l')
1447 1.129 ad pr = (void (*)(const char *, ...))printf;
1448 1.64 simonb
1449 1.43 jhawk if (count == -1)
1450 1.43 jhawk count = 65535;
1451 1.43 jhawk
1452 1.70 atatat db_stack_trace_print(addr, have_addr, count, modif, pr);
1453 1.32 lukem }
1454 1.32 lukem
1455 1.64 simonb static void
1456 1.94 matt db_sync_cmd(db_expr_t addr, bool have_addr,
1457 1.91 christos db_expr_t count, const char *modif)
1458 1.32 lukem {
1459 1.129 ad #ifdef _KERNEL
1460 1.47 sommerfe /*
1461 1.47 sommerfe * We are leaving DDB, never to return upward.
1462 1.47 sommerfe * Clear db_recover so that we can debug faults in functions
1463 1.47 sommerfe * called from cpu_reboot.
1464 1.47 sommerfe */
1465 1.47 sommerfe db_recover = 0;
1466 1.113 martin panicstr = "dump forced via kernel debugger";
1467 1.167 thorpej kern_reboot(RB_DUMP, NULL);
1468 1.129 ad #else /* _KERNEL */
1469 1.129 ad db_printf("This command can only be used in-kernel.\n");
1470 1.129 ad #endif /* _KERNEL */
1471 1.1 cgd }
1472 1.112 yamt
1473 1.112 yamt /*
1474 1.112 yamt * Describe what an address is
1475 1.112 yamt */
1476 1.112 yamt void
1477 1.112 yamt db_whatis_cmd(db_expr_t address, bool have_addr,
1478 1.112 yamt db_expr_t count, const char *modif)
1479 1.112 yamt {
1480 1.112 yamt const uintptr_t addr = (uintptr_t)address;
1481 1.112 yamt
1482 1.129 ad db_lwp_whatis(addr, db_printf);
1483 1.129 ad #ifdef _KERNEL /* XXX CRASH(8) */
1484 1.112 yamt pool_whatis(addr, db_printf);
1485 1.112 yamt vmem_whatis(addr, db_printf);
1486 1.112 yamt uvm_whatis(addr, db_printf);
1487 1.123 ad module_whatis(addr, db_printf);
1488 1.129 ad #endif
1489 1.112 yamt }
1490