Deleted Added
full compact
db_command.c (50477) db_command.c (78161)
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the
9 * software, derivative works or modified versions, and any portions
10 * thereof, and that both notices appear in supporting documentation.
11 *
12 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15 *
16 * Carnegie Mellon requests users of this software to return to
17 *
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
1/*
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the
9 * software, derivative works or modified versions, and any portions
10 * thereof, and that both notices appear in supporting documentation.
11 *
12 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15 *
16 * Carnegie Mellon requests users of this software to return to
17 *
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
26 * $FreeBSD: head/sys/ddb/db_command.c 50477 1999-08-28 01:08:13Z peter $
26 * $FreeBSD: head/sys/ddb/db_command.c 78161 2001-06-13 10:58:39Z peter $
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33
34/*
35 * Command dispatcher.
36 */
37#include <sys/param.h>
38#include <sys/linker_set.h>
39#include <sys/reboot.h>
40#include <sys/systm.h>
41#include <sys/cons.h>
42
43#include <ddb/ddb.h>
44#include <ddb/db_command.h>
45#include <ddb/db_lex.h>
46#include <ddb/db_output.h>
47
48#include <setjmp.h>
49
50/*
51 * Exported global variables
52 */
53boolean_t db_cmd_loop_done;
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33
34/*
35 * Command dispatcher.
36 */
37#include <sys/param.h>
38#include <sys/linker_set.h>
39#include <sys/reboot.h>
40#include <sys/systm.h>
41#include <sys/cons.h>
42
43#include <ddb/ddb.h>
44#include <ddb/db_command.h>
45#include <ddb/db_lex.h>
46#include <ddb/db_output.h>
47
48#include <setjmp.h>
49
50/*
51 * Exported global variables
52 */
53boolean_t db_cmd_loop_done;
54extern struct linker_set db_cmd_set;
55db_addr_t db_dot;
56jmp_buf db_jmpbuf;
57db_addr_t db_last_addr;
58db_addr_t db_prev;
59db_addr_t db_next;
54db_addr_t db_dot;
55jmp_buf db_jmpbuf;
56db_addr_t db_last_addr;
57db_addr_t db_prev;
58db_addr_t db_next;
60extern struct linker_set db_show_cmd_set;
61
59
60SET_DECLARE(db_cmd_set, struct command);
61SET_DECLARE(db_show_cmd_set, struct command);
62
62static db_cmdfcn_t db_fncall;
63static db_cmdfcn_t db_gdb;
64
65/* XXX this is actually forward-static. */
66extern struct command db_show_cmds[];
67
68/*
69 * if 'ed' style: 'dot' is set at start of last item printed,
70 * and '+' points to next line.
71 * Otherwise: 'dot' points to next item, '..' points to last.
72 */
73static boolean_t db_ed_style = TRUE;
74
75/*
76 * Utility routine - discard tokens through end-of-line.
77 */
78void
79db_skip_to_eol()
80{
81 int t;
82 do {
83 t = db_read_token();
84 } while (t != tEOL);
85}
86
87/*
88 * Results of command search.
89 */
90#define CMD_UNIQUE 0
91#define CMD_FOUND 1
92#define CMD_NONE 2
93#define CMD_AMBIGUOUS 3
94#define CMD_HELP 4
95
96static void db_cmd_list __P((struct command *table,
63static db_cmdfcn_t db_fncall;
64static db_cmdfcn_t db_gdb;
65
66/* XXX this is actually forward-static. */
67extern struct command db_show_cmds[];
68
69/*
70 * if 'ed' style: 'dot' is set at start of last item printed,
71 * and '+' points to next line.
72 * Otherwise: 'dot' points to next item, '..' points to last.
73 */
74static boolean_t db_ed_style = TRUE;
75
76/*
77 * Utility routine - discard tokens through end-of-line.
78 */
79void
80db_skip_to_eol()
81{
82 int t;
83 do {
84 t = db_read_token();
85 } while (t != tEOL);
86}
87
88/*
89 * Results of command search.
90 */
91#define CMD_UNIQUE 0
92#define CMD_FOUND 1
93#define CMD_NONE 2
94#define CMD_AMBIGUOUS 3
95#define CMD_HELP 4
96
97static void db_cmd_list __P((struct command *table,
97 struct command **aux_tablep));
98 struct command **aux_tablep,
99 struct command **aux_tablep_end));
98static int db_cmd_search __P((char *name, struct command *table,
99 struct command **aux_tablep,
100static int db_cmd_search __P((char *name, struct command *table,
101 struct command **aux_tablep,
102 struct command **aux_tablep_end,
100 struct command **cmdp));
101static void db_command __P((struct command **last_cmdp,
102 struct command *cmd_table,
103 struct command **cmdp));
104static void db_command __P((struct command **last_cmdp,
105 struct command *cmd_table,
103 struct command **aux_cmd_tablep));
106 struct command **aux_cmd_tablep,
107 struct command **aux_cmd_tablep_end));
104
105/*
106 * Search for command prefix.
107 */
108static int
108
109/*
110 * Search for command prefix.
111 */
112static int
109db_cmd_search(name, table, aux_tablep, cmdp)
113db_cmd_search(name, table, aux_tablep, aux_tablep_end, cmdp)
110 char * name;
111 struct command *table;
112 struct command **aux_tablep;
114 char * name;
115 struct command *table;
116 struct command **aux_tablep;
117 struct command **aux_tablep_end;
113 struct command **cmdp; /* out */
114{
115 struct command *cmd;
116 struct command **aux_cmdp;
117 int result = CMD_NONE;
118
119 for (cmd = table; cmd->name != 0; cmd++) {
120 register char *lp;
121 register char *rp;
122 register int c;
123
124 lp = name;
125 rp = cmd->name;
126 while ((c = *lp) == *rp) {
127 if (c == 0) {
128 /* complete match */
129 *cmdp = cmd;
130 return (CMD_UNIQUE);
131 }
132 lp++;
133 rp++;
134 }
135 if (c == 0) {
136 /* end of name, not end of command -
137 partial match */
138 if (result == CMD_FOUND) {
139 result = CMD_AMBIGUOUS;
140 /* but keep looking for a full match -
141 this lets us match single letters */
142 }
143 else {
144 *cmdp = cmd;
145 result = CMD_FOUND;
146 }
147 }
148 }
149 if (result == CMD_NONE && aux_tablep != 0)
150 /* XXX repeat too much code. */
118 struct command **cmdp; /* out */
119{
120 struct command *cmd;
121 struct command **aux_cmdp;
122 int result = CMD_NONE;
123
124 for (cmd = table; cmd->name != 0; cmd++) {
125 register char *lp;
126 register char *rp;
127 register int c;
128
129 lp = name;
130 rp = cmd->name;
131 while ((c = *lp) == *rp) {
132 if (c == 0) {
133 /* complete match */
134 *cmdp = cmd;
135 return (CMD_UNIQUE);
136 }
137 lp++;
138 rp++;
139 }
140 if (c == 0) {
141 /* end of name, not end of command -
142 partial match */
143 if (result == CMD_FOUND) {
144 result = CMD_AMBIGUOUS;
145 /* but keep looking for a full match -
146 this lets us match single letters */
147 }
148 else {
149 *cmdp = cmd;
150 result = CMD_FOUND;
151 }
152 }
153 }
154 if (result == CMD_NONE && aux_tablep != 0)
155 /* XXX repeat too much code. */
151 for (aux_cmdp = aux_tablep; *aux_cmdp != 0; aux_cmdp++) {
156 for (aux_cmdp = aux_tablep; aux_cmdp < aux_tablep_end; aux_cmdp++) {
152 register char *lp;
153 register char *rp;
154 register int c;
155
156 lp = name;
157 rp = (*aux_cmdp)->name;
158 while ((c = *lp) == *rp) {
159 if (c == 0) {
160 /* complete match */
161 *cmdp = *aux_cmdp;
162 return (CMD_UNIQUE);
163 }
164 lp++;
165 rp++;
166 }
167 if (c == 0) {
168 /* end of name, not end of command -
169 partial match */
170 if (result == CMD_FOUND) {
171 result = CMD_AMBIGUOUS;
172 /* but keep looking for a full match -
173 this lets us match single letters */
174 }
175 else {
176 *cmdp = *aux_cmdp;
177 result = CMD_FOUND;
178 }
179 }
180 }
181 if (result == CMD_NONE) {
182 /* check for 'help' */
183 if (name[0] == 'h' && name[1] == 'e'
184 && name[2] == 'l' && name[3] == 'p')
185 result = CMD_HELP;
186 }
187 return (result);
188}
189
190static void
157 register char *lp;
158 register char *rp;
159 register int c;
160
161 lp = name;
162 rp = (*aux_cmdp)->name;
163 while ((c = *lp) == *rp) {
164 if (c == 0) {
165 /* complete match */
166 *cmdp = *aux_cmdp;
167 return (CMD_UNIQUE);
168 }
169 lp++;
170 rp++;
171 }
172 if (c == 0) {
173 /* end of name, not end of command -
174 partial match */
175 if (result == CMD_FOUND) {
176 result = CMD_AMBIGUOUS;
177 /* but keep looking for a full match -
178 this lets us match single letters */
179 }
180 else {
181 *cmdp = *aux_cmdp;
182 result = CMD_FOUND;
183 }
184 }
185 }
186 if (result == CMD_NONE) {
187 /* check for 'help' */
188 if (name[0] == 'h' && name[1] == 'e'
189 && name[2] == 'l' && name[3] == 'p')
190 result = CMD_HELP;
191 }
192 return (result);
193}
194
195static void
191db_cmd_list(table, aux_tablep)
196db_cmd_list(table, aux_tablep, aux_tablep_end)
192 struct command *table;
193 struct command **aux_tablep;
197 struct command *table;
198 struct command **aux_tablep;
199 struct command **aux_tablep_end;
194{
195 register struct command *cmd;
196 register struct command **aux_cmdp;
197
198 for (cmd = table; cmd->name != 0; cmd++) {
199 db_printf("%-12s", cmd->name);
200 db_end_line();
201 }
202 if (aux_tablep == 0)
203 return;
200{
201 register struct command *cmd;
202 register struct command **aux_cmdp;
203
204 for (cmd = table; cmd->name != 0; cmd++) {
205 db_printf("%-12s", cmd->name);
206 db_end_line();
207 }
208 if (aux_tablep == 0)
209 return;
204 for (aux_cmdp = aux_tablep; *aux_cmdp != 0; aux_cmdp++) {
210 for (aux_cmdp = aux_tablep; aux_cmdp < aux_tablep_end; aux_cmdp++) {
205 db_printf("%-12s", (*aux_cmdp)->name);
206 db_end_line();
207 }
208}
209
210static void
211 db_printf("%-12s", (*aux_cmdp)->name);
212 db_end_line();
213 }
214}
215
216static void
211db_command(last_cmdp, cmd_table, aux_cmd_tablep)
217db_command(last_cmdp, cmd_table, aux_cmd_tablep, aux_cmd_tablep_end)
212 struct command **last_cmdp; /* IN_OUT */
213 struct command *cmd_table;
214 struct command **aux_cmd_tablep;
218 struct command **last_cmdp; /* IN_OUT */
219 struct command *cmd_table;
220 struct command **aux_cmd_tablep;
221 struct command **aux_cmd_tablep_end;
215{
216 struct command *cmd;
217 int t;
218 char modif[TOK_STRING_SIZE];
219 db_expr_t addr, count;
220 boolean_t have_addr = FALSE;
221 int result;
222
223 t = db_read_token();
224 if (t == tEOL) {
225 /* empty line repeats last command, at 'next' */
226 cmd = *last_cmdp;
227 addr = (db_expr_t)db_next;
228 have_addr = FALSE;
229 count = 1;
230 modif[0] = '\0';
231 }
232 else if (t == tEXCL) {
233 db_fncall((db_expr_t)0, (boolean_t)0, (db_expr_t)0, (char *)0);
234 return;
235 }
236 else if (t != tIDENT) {
237 db_printf("?\n");
238 db_flush_lex();
239 return;
240 }
241 else {
242 /*
243 * Search for command
244 */
245 while (cmd_table) {
246 result = db_cmd_search(db_tok_string,
247 cmd_table,
248 aux_cmd_tablep,
222{
223 struct command *cmd;
224 int t;
225 char modif[TOK_STRING_SIZE];
226 db_expr_t addr, count;
227 boolean_t have_addr = FALSE;
228 int result;
229
230 t = db_read_token();
231 if (t == tEOL) {
232 /* empty line repeats last command, at 'next' */
233 cmd = *last_cmdp;
234 addr = (db_expr_t)db_next;
235 have_addr = FALSE;
236 count = 1;
237 modif[0] = '\0';
238 }
239 else if (t == tEXCL) {
240 db_fncall((db_expr_t)0, (boolean_t)0, (db_expr_t)0, (char *)0);
241 return;
242 }
243 else if (t != tIDENT) {
244 db_printf("?\n");
245 db_flush_lex();
246 return;
247 }
248 else {
249 /*
250 * Search for command
251 */
252 while (cmd_table) {
253 result = db_cmd_search(db_tok_string,
254 cmd_table,
255 aux_cmd_tablep,
256 aux_cmd_tablep_end,
249 &cmd);
250 switch (result) {
251 case CMD_NONE:
252 db_printf("No such command\n");
253 db_flush_lex();
254 return;
255 case CMD_AMBIGUOUS:
256 db_printf("Ambiguous\n");
257 db_flush_lex();
258 return;
259 case CMD_HELP:
257 &cmd);
258 switch (result) {
259 case CMD_NONE:
260 db_printf("No such command\n");
261 db_flush_lex();
262 return;
263 case CMD_AMBIGUOUS:
264 db_printf("Ambiguous\n");
265 db_flush_lex();
266 return;
267 case CMD_HELP:
260 db_cmd_list(cmd_table, aux_cmd_tablep);
268 db_cmd_list(cmd_table, aux_cmd_tablep, aux_cmd_tablep_end);
261 db_flush_lex();
262 return;
263 default:
264 break;
265 }
266 if ((cmd_table = cmd->more) != 0) {
267 /* XXX usually no more aux's. */
268 aux_cmd_tablep = 0;
269 if (cmd_table == db_show_cmds)
269 db_flush_lex();
270 return;
271 default:
272 break;
273 }
274 if ((cmd_table = cmd->more) != 0) {
275 /* XXX usually no more aux's. */
276 aux_cmd_tablep = 0;
277 if (cmd_table == db_show_cmds)
270 aux_cmd_tablep =
271 (struct command **)&db_show_cmd_set.ls_items[0];
278 aux_cmd_tablep = SET_BEGIN(db_show_cmd_set);
279 aux_cmd_tablep_end = SET_LIMIT(db_show_cmd_set);
272
273 t = db_read_token();
274 if (t != tIDENT) {
280
281 t = db_read_token();
282 if (t != tIDENT) {
275 db_cmd_list(cmd_table, aux_cmd_tablep);
283 db_cmd_list(cmd_table, aux_cmd_tablep, aux_cmd_tablep_end);
276 db_flush_lex();
277 return;
278 }
279 }
280 }
281
282 if ((cmd->flag & CS_OWN) == 0) {
283 /*
284 * Standard syntax:
285 * command [/modifier] [addr] [,count]
286 */
287 t = db_read_token();
288 if (t == tSLASH) {
289 t = db_read_token();
290 if (t != tIDENT) {
291 db_printf("Bad modifier\n");
292 db_flush_lex();
293 return;
294 }
295 db_strcpy(modif, db_tok_string);
296 }
297 else {
298 db_unread_token(t);
299 modif[0] = '\0';
300 }
301
302 if (db_expression(&addr)) {
303 db_dot = (db_addr_t) addr;
304 db_last_addr = db_dot;
305 have_addr = TRUE;
306 }
307 else {
308 addr = (db_expr_t) db_dot;
309 have_addr = FALSE;
310 }
311 t = db_read_token();
312 if (t == tCOMMA) {
313 if (!db_expression(&count)) {
314 db_printf("Count missing\n");
315 db_flush_lex();
316 return;
317 }
318 }
319 else {
320 db_unread_token(t);
321 count = -1;
322 }
323 if ((cmd->flag & CS_MORE) == 0) {
324 db_skip_to_eol();
325 }
326 }
327 }
328 *last_cmdp = cmd;
329 if (cmd != 0) {
330 /*
331 * Execute the command.
332 */
333 (*cmd->fcn)(addr, have_addr, count, modif);
334
335 if (cmd->flag & CS_SET_DOT) {
336 /*
337 * If command changes dot, set dot to
338 * previous address displayed (if 'ed' style).
339 */
340 if (db_ed_style) {
341 db_dot = db_prev;
342 }
343 else {
344 db_dot = db_next;
345 }
346 }
347 else {
348 /*
349 * If command does not change dot,
350 * set 'next' location to be the same.
351 */
352 db_next = db_dot;
353 }
354 }
355}
356
357/*
358 * 'show' commands
359 */
360
361static struct command db_show_all_cmds[] = {
362#if 0
363 { "threads", db_show_all_threads, 0, 0 },
364#endif
365 { "procs", db_ps, 0, 0 },
366 { (char *)0 }
367};
368
369static struct command db_show_cmds[] = {
370 { "all", 0, 0, db_show_all_cmds },
371 { "registers", db_show_regs, 0, 0 },
372 { "breaks", db_listbreak_cmd, 0, 0 },
373#if 0
374 { "thread", db_show_one_thread, 0, 0 },
375#endif
376#if 0
377 { "port", ipc_port_print, 0, 0 },
378#endif
379 { (char *)0, }
380};
381
382static struct command db_command_table[] = {
383 { "print", db_print_cmd, 0, 0 },
384 { "p", db_print_cmd, 0, 0 },
385 { "examine", db_examine_cmd, CS_SET_DOT, 0 },
386 { "x", db_examine_cmd, CS_SET_DOT, 0 },
387 { "search", db_search_cmd, CS_OWN|CS_SET_DOT, 0 },
388 { "set", db_set_cmd, CS_OWN, 0 },
389 { "write", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
390 { "w", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
391 { "delete", db_delete_cmd, 0, 0 },
392 { "d", db_delete_cmd, 0, 0 },
393 { "break", db_breakpoint_cmd, 0, 0 },
394 { "dwatch", db_deletewatch_cmd, 0, 0 },
395 { "watch", db_watchpoint_cmd, CS_MORE,0 },
396 { "step", db_single_step_cmd, 0, 0 },
397 { "s", db_single_step_cmd, 0, 0 },
398 { "continue", db_continue_cmd, 0, 0 },
399 { "c", db_continue_cmd, 0, 0 },
400 { "until", db_trace_until_call_cmd,0, 0 },
401 { "next", db_trace_until_matching_cmd,0, 0 },
402 { "match", db_trace_until_matching_cmd,0, 0 },
403 { "trace", db_stack_trace_cmd, 0, 0 },
404 { "call", db_fncall, CS_OWN, 0 },
405 { "show", 0, 0, db_show_cmds },
406 { "ps", db_ps, 0, 0 },
407 { "gdb", db_gdb, 0, 0 },
408 { (char *)0, }
409};
410
411static struct command *db_last_command = 0;
412
413#if 0
414void
415db_help_cmd()
416{
417 struct command *cmd = db_command_table;
418
419 while (cmd->name != 0) {
420 db_printf("%-12s", cmd->name);
421 db_end_line();
422 cmd++;
423 }
424}
425#endif
426
427/*
428 * At least one non-optional command must be implemented using
429 * DB_COMMAND() so that db_cmd_set gets created. Here is one.
430 */
431DB_COMMAND(panic, db_panic)
432{
433 panic("from debugger");
434}
435
436void
437db_command_loop()
438{
439 /*
440 * Initialize 'prev' and 'next' to dot.
441 */
442 db_prev = db_dot;
443 db_next = db_dot;
444
445 db_cmd_loop_done = 0;
446 while (!db_cmd_loop_done) {
447
448 (void) setjmp(db_jmpbuf);
449 if (db_print_position() != 0)
450 db_printf("\n");
451
452 db_printf("db> ");
453 (void) db_read_line();
454
455 db_command(&db_last_command, db_command_table,
284 db_flush_lex();
285 return;
286 }
287 }
288 }
289
290 if ((cmd->flag & CS_OWN) == 0) {
291 /*
292 * Standard syntax:
293 * command [/modifier] [addr] [,count]
294 */
295 t = db_read_token();
296 if (t == tSLASH) {
297 t = db_read_token();
298 if (t != tIDENT) {
299 db_printf("Bad modifier\n");
300 db_flush_lex();
301 return;
302 }
303 db_strcpy(modif, db_tok_string);
304 }
305 else {
306 db_unread_token(t);
307 modif[0] = '\0';
308 }
309
310 if (db_expression(&addr)) {
311 db_dot = (db_addr_t) addr;
312 db_last_addr = db_dot;
313 have_addr = TRUE;
314 }
315 else {
316 addr = (db_expr_t) db_dot;
317 have_addr = FALSE;
318 }
319 t = db_read_token();
320 if (t == tCOMMA) {
321 if (!db_expression(&count)) {
322 db_printf("Count missing\n");
323 db_flush_lex();
324 return;
325 }
326 }
327 else {
328 db_unread_token(t);
329 count = -1;
330 }
331 if ((cmd->flag & CS_MORE) == 0) {
332 db_skip_to_eol();
333 }
334 }
335 }
336 *last_cmdp = cmd;
337 if (cmd != 0) {
338 /*
339 * Execute the command.
340 */
341 (*cmd->fcn)(addr, have_addr, count, modif);
342
343 if (cmd->flag & CS_SET_DOT) {
344 /*
345 * If command changes dot, set dot to
346 * previous address displayed (if 'ed' style).
347 */
348 if (db_ed_style) {
349 db_dot = db_prev;
350 }
351 else {
352 db_dot = db_next;
353 }
354 }
355 else {
356 /*
357 * If command does not change dot,
358 * set 'next' location to be the same.
359 */
360 db_next = db_dot;
361 }
362 }
363}
364
365/*
366 * 'show' commands
367 */
368
369static struct command db_show_all_cmds[] = {
370#if 0
371 { "threads", db_show_all_threads, 0, 0 },
372#endif
373 { "procs", db_ps, 0, 0 },
374 { (char *)0 }
375};
376
377static struct command db_show_cmds[] = {
378 { "all", 0, 0, db_show_all_cmds },
379 { "registers", db_show_regs, 0, 0 },
380 { "breaks", db_listbreak_cmd, 0, 0 },
381#if 0
382 { "thread", db_show_one_thread, 0, 0 },
383#endif
384#if 0
385 { "port", ipc_port_print, 0, 0 },
386#endif
387 { (char *)0, }
388};
389
390static struct command db_command_table[] = {
391 { "print", db_print_cmd, 0, 0 },
392 { "p", db_print_cmd, 0, 0 },
393 { "examine", db_examine_cmd, CS_SET_DOT, 0 },
394 { "x", db_examine_cmd, CS_SET_DOT, 0 },
395 { "search", db_search_cmd, CS_OWN|CS_SET_DOT, 0 },
396 { "set", db_set_cmd, CS_OWN, 0 },
397 { "write", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
398 { "w", db_write_cmd, CS_MORE|CS_SET_DOT, 0 },
399 { "delete", db_delete_cmd, 0, 0 },
400 { "d", db_delete_cmd, 0, 0 },
401 { "break", db_breakpoint_cmd, 0, 0 },
402 { "dwatch", db_deletewatch_cmd, 0, 0 },
403 { "watch", db_watchpoint_cmd, CS_MORE,0 },
404 { "step", db_single_step_cmd, 0, 0 },
405 { "s", db_single_step_cmd, 0, 0 },
406 { "continue", db_continue_cmd, 0, 0 },
407 { "c", db_continue_cmd, 0, 0 },
408 { "until", db_trace_until_call_cmd,0, 0 },
409 { "next", db_trace_until_matching_cmd,0, 0 },
410 { "match", db_trace_until_matching_cmd,0, 0 },
411 { "trace", db_stack_trace_cmd, 0, 0 },
412 { "call", db_fncall, CS_OWN, 0 },
413 { "show", 0, 0, db_show_cmds },
414 { "ps", db_ps, 0, 0 },
415 { "gdb", db_gdb, 0, 0 },
416 { (char *)0, }
417};
418
419static struct command *db_last_command = 0;
420
421#if 0
422void
423db_help_cmd()
424{
425 struct command *cmd = db_command_table;
426
427 while (cmd->name != 0) {
428 db_printf("%-12s", cmd->name);
429 db_end_line();
430 cmd++;
431 }
432}
433#endif
434
435/*
436 * At least one non-optional command must be implemented using
437 * DB_COMMAND() so that db_cmd_set gets created. Here is one.
438 */
439DB_COMMAND(panic, db_panic)
440{
441 panic("from debugger");
442}
443
444void
445db_command_loop()
446{
447 /*
448 * Initialize 'prev' and 'next' to dot.
449 */
450 db_prev = db_dot;
451 db_next = db_dot;
452
453 db_cmd_loop_done = 0;
454 while (!db_cmd_loop_done) {
455
456 (void) setjmp(db_jmpbuf);
457 if (db_print_position() != 0)
458 db_printf("\n");
459
460 db_printf("db> ");
461 (void) db_read_line();
462
463 db_command(&db_last_command, db_command_table,
456 (struct command **)&db_cmd_set.ls_items[0]);
464 SET_BEGIN(db_cmd_set), SET_LIMIT(db_cmd_set));
457 }
458}
459
460void
461db_error(s)
462 char *s;
463{
464 if (s)
465 db_printf(s);
466 db_flush_lex();
467 longjmp(db_jmpbuf, 1);
468}
469
470
471/*
472 * Call random function:
473 * !expr(arg,arg,arg)
474 */
475static void
476db_fncall(dummy1, dummy2, dummy3, dummy4)
477 db_expr_t dummy1;
478 boolean_t dummy2;
479 db_expr_t dummy3;
480 char * dummy4;
481{
482 db_expr_t fn_addr;
483#define MAXARGS 11 /* XXX only 10 are passed */
484 db_expr_t args[MAXARGS];
485 int nargs = 0;
486 db_expr_t retval;
487 typedef db_expr_t fcn_10args_t __P((db_expr_t, db_expr_t, db_expr_t,
488 db_expr_t, db_expr_t, db_expr_t,
489 db_expr_t, db_expr_t, db_expr_t,
490 db_expr_t));
491 fcn_10args_t *func;
492 int t;
493
494 if (!db_expression(&fn_addr)) {
495 db_printf("Bad function\n");
496 db_flush_lex();
497 return;
498 }
499 func = (fcn_10args_t *)fn_addr; /* XXX */
500
501 t = db_read_token();
502 if (t == tLPAREN) {
503 if (db_expression(&args[0])) {
504 nargs++;
505 while ((t = db_read_token()) == tCOMMA) {
506 if (nargs == MAXARGS) {
507 db_printf("Too many arguments\n");
508 db_flush_lex();
509 return;
510 }
511 if (!db_expression(&args[nargs])) {
512 db_printf("Argument missing\n");
513 db_flush_lex();
514 return;
515 }
516 nargs++;
517 }
518 db_unread_token(t);
519 }
520 if (db_read_token() != tRPAREN) {
521 db_printf("?\n");
522 db_flush_lex();
523 return;
524 }
525 }
526 db_skip_to_eol();
527
528 while (nargs < MAXARGS) {
529 args[nargs++] = 0;
530 }
531
532 retval = (*func)(args[0], args[1], args[2], args[3], args[4],
533 args[5], args[6], args[7], args[8], args[9] );
534 db_printf("%#lr\n", (long)retval);
535}
536
537/* Enter GDB remote protocol debugger on the next trap. */
538
539dev_t gdbdev = NODEV;
540cn_getc_t *gdb_getc;
541cn_putc_t *gdb_putc;
542
543static void
544db_gdb (dummy1, dummy2, dummy3, dummy4)
545 db_expr_t dummy1;
546 boolean_t dummy2;
547 db_expr_t dummy3;
548 char * dummy4;
549{
550
551 if (gdbdev == NODEV) {
552 db_printf("No gdb port enabled. Set flag 0x80 on desired port\n");
553 db_printf("in your configuration file (currently sio only).\n");
554 return;
555 }
556 boothowto ^= RB_GDB;
557
558 db_printf("Next trap will enter %s\n",
559 boothowto & RB_GDB ? "GDB remote protocol mode"
560 : "DDB debugger");
561}
465 }
466}
467
468void
469db_error(s)
470 char *s;
471{
472 if (s)
473 db_printf(s);
474 db_flush_lex();
475 longjmp(db_jmpbuf, 1);
476}
477
478
479/*
480 * Call random function:
481 * !expr(arg,arg,arg)
482 */
483static void
484db_fncall(dummy1, dummy2, dummy3, dummy4)
485 db_expr_t dummy1;
486 boolean_t dummy2;
487 db_expr_t dummy3;
488 char * dummy4;
489{
490 db_expr_t fn_addr;
491#define MAXARGS 11 /* XXX only 10 are passed */
492 db_expr_t args[MAXARGS];
493 int nargs = 0;
494 db_expr_t retval;
495 typedef db_expr_t fcn_10args_t __P((db_expr_t, db_expr_t, db_expr_t,
496 db_expr_t, db_expr_t, db_expr_t,
497 db_expr_t, db_expr_t, db_expr_t,
498 db_expr_t));
499 fcn_10args_t *func;
500 int t;
501
502 if (!db_expression(&fn_addr)) {
503 db_printf("Bad function\n");
504 db_flush_lex();
505 return;
506 }
507 func = (fcn_10args_t *)fn_addr; /* XXX */
508
509 t = db_read_token();
510 if (t == tLPAREN) {
511 if (db_expression(&args[0])) {
512 nargs++;
513 while ((t = db_read_token()) == tCOMMA) {
514 if (nargs == MAXARGS) {
515 db_printf("Too many arguments\n");
516 db_flush_lex();
517 return;
518 }
519 if (!db_expression(&args[nargs])) {
520 db_printf("Argument missing\n");
521 db_flush_lex();
522 return;
523 }
524 nargs++;
525 }
526 db_unread_token(t);
527 }
528 if (db_read_token() != tRPAREN) {
529 db_printf("?\n");
530 db_flush_lex();
531 return;
532 }
533 }
534 db_skip_to_eol();
535
536 while (nargs < MAXARGS) {
537 args[nargs++] = 0;
538 }
539
540 retval = (*func)(args[0], args[1], args[2], args[3], args[4],
541 args[5], args[6], args[7], args[8], args[9] );
542 db_printf("%#lr\n", (long)retval);
543}
544
545/* Enter GDB remote protocol debugger on the next trap. */
546
547dev_t gdbdev = NODEV;
548cn_getc_t *gdb_getc;
549cn_putc_t *gdb_putc;
550
551static void
552db_gdb (dummy1, dummy2, dummy3, dummy4)
553 db_expr_t dummy1;
554 boolean_t dummy2;
555 db_expr_t dummy3;
556 char * dummy4;
557{
558
559 if (gdbdev == NODEV) {
560 db_printf("No gdb port enabled. Set flag 0x80 on desired port\n");
561 db_printf("in your configuration file (currently sio only).\n");
562 return;
563 }
564 boothowto ^= RB_GDB;
565
566 db_printf("Next trap will enter %s\n",
567 boothowto & RB_GDB ? "GDB remote protocol mode"
568 : "DDB debugger");
569}