2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
53 * Author: David B. Golub, Carnegie Mellon University
63 #include <norma_scsi.h>
66 #include <mach/boolean.h>
68 #include <machine/db_machdep.h>
73 # include <machine/kdebug.h>
75 #endif /* defined(__alpha) */
77 #include <ddb/db_lex.h>
78 #include <ddb/db_output.h>
79 #include <ddb/db_break.h>
80 #include <ddb/db_command.h>
81 #include <ddb/db_cond.h>
82 #include <ddb/db_examine.h>
83 #include <ddb/db_expr.h>
84 #include <ppc/db_low_trace.h>
85 #include <ddb/db_macro.h>
86 #include <ddb/db_print.h>
87 #include <ddb/db_run.h>
88 #include <ddb/db_task_thread.h>
89 #include <ddb/db_variables.h>
90 #include <ddb/db_watch.h>
91 #include <ddb/db_write_cmd.h>
94 #include <machine/setjmp.h>
95 #include <kern/thread.h>
97 #include <kern/misc_protos.h>
98 #include <vm/vm_print.h>
99 #include <ipc/ipc_print.h>
100 #include <kern/kern_print.h>
101 #include <machine/db_machdep.h> /* For db_stack_trace_cmd(). */
102 #include <kern/zalloc.h> /* For db_show_one_zone, db_show_all_zones. */
103 #include <kern/lock.h> /* For db_show_all_slocks(). */
106 #include <xmm/xmm_obj.h>
107 #endif /* NORMA_VM */
110 * Exported global variables
112 boolean_t db_cmd_loop_done
;
113 jmp_buf_t
*db_recover
= 0;
115 db_addr_t db_last_addr
;
120 * if 'ed' style: 'dot' is set at start of last item printed,
121 * and '+' points to next line.
122 * Otherwise: 'dot' points to next item, '..' points to last.
124 boolean_t db_ed_style
= TRUE
;
127 * Results of command search.
132 #define CMD_AMBIGUOUS 3
135 /* Prototypes for functions local to this file. XXX -- should be static!
139 struct db_command
**last_cmdp
, /* IN_OUT */
140 db_expr_t
*last_countp
, /* IN_OUT */
141 char *last_modifp
, /* IN_OUT */
142 struct db_command
*cmd_table
);
144 void db_help_cmd(void);
146 void db_output_prompt(void);
148 void db_fncall(void);
150 void db_cmd_list(struct db_command
*table
);
154 struct db_command
* table
,
155 struct db_command
** cmdp
); /* out */
157 void db_command_list(
158 struct db_command
**last_cmdp
, /* IN_OUT */
159 db_expr_t
*last_countp
, /* IN_OUT */
160 char *last_modifp
, /* IN_OUT */
161 struct db_command
*cmd_table
);
166 * Search for command prefix.
171 struct db_command
* table
,
172 struct db_command
** cmdp
) /* out */
174 struct db_command
*cmd
;
175 int result
= CMD_NONE
;
177 for (cmd
= table
; cmd
->name
!= 0; cmd
++) {
184 while ((c
= *lp
) == *rp
) {
194 /* end of name, not end of command -
196 if (result
== CMD_FOUND
) {
197 result
= CMD_AMBIGUOUS
;
198 /* but keep looking for a full match -
199 this lets us match single letters */
207 if (result
== CMD_NONE
) {
208 /* check for 'help' */
209 if (!strncmp(name
, "help", strlen(name
)))
216 db_cmd_list(struct db_command
*table
)
218 register struct db_command
*new;
219 register struct db_command
*old
;
220 register struct db_command
*cur
;
225 for (cur
= table
; cur
->name
!= 0; cur
++)
226 if ((l
= strlen(cur
->name
)) >= len
)
229 old
= (struct db_command
*)0;
231 new = (struct db_command
*)0;
232 for (cur
= table
; cur
->name
!= 0; cur
++)
233 if ((new == (struct db_command
*)0 ||
234 strcmp(cur
->name
, new->name
) < 0) &&
235 (old
== (struct db_command
*)0 ||
236 strcmp(cur
->name
, old
->name
) > 0))
238 if (new == (struct db_command
*)0)
240 db_reserve_output_position(len
);
241 db_printf("%-*s", len
, new->name
);
248 struct db_command
**last_cmdp
, /* IN_OUT */
249 db_expr_t
*last_countp
, /* IN_OUT */
250 char *last_modifp
, /* IN_OUT */
251 struct db_command
*cmd_table
)
253 struct db_command
*cmd
;
255 char modif
[TOK_STRING_SIZE
];
256 char *modifp
= &modif
[0];
257 db_expr_t addr
, count
;
262 if (t
== tEOL
|| t
== tSEMI_COLON
) {
263 /* empty line repeats last command, at 'next' */
265 count
= *last_countp
;
266 modifp
= last_modifp
;
267 addr
= (db_expr_t
)db_next
;
269 if (t
== tSEMI_COLON
)
272 else if (t
== tEXCL
) {
276 else if (t
!= tIDENT
) {
286 result
= db_cmd_search(db_tok_string
,
291 if (db_exec_macro(db_tok_string
) == 0)
293 db_printf("No such command \"%s\"\n", db_tok_string
);
297 db_printf("Ambiguous\n");
301 db_cmd_list(cmd_table
);
307 if ((cmd_table
= cmd
->more
) != 0) {
310 db_cmd_list(cmd_table
);
317 if ((cmd
->flag
& CS_OWN
) == 0) {
320 * command [/modifier] [addr] [,count]
326 db_printf("Bad modifier \"/%s\"\n", db_tok_string
);
330 strcpy(modif
, db_tok_string
);
337 if (db_expression(&addr
)) {
338 db_dot
= (db_addr_t
) addr
;
339 db_last_addr
= db_dot
;
343 addr
= (db_expr_t
) db_dot
;
348 if (!db_expression(&count
)) {
349 db_printf("Count missing after ','\n");
362 * Execute the command.
364 (*cmd
->fcn
)(addr
, have_addr
, count
, modifp
);
366 if (cmd
->flag
& CS_SET_DOT
) {
368 * If command changes dot, set dot to
369 * previous address displayed (if 'ed' style).
380 * If command does not change dot,
381 * set 'next' location to be the same.
387 *last_countp
= count
;
388 strcpy(last_modifp
, modifp
);
393 struct db_command
**last_cmdp
, /* IN_OUT */
394 db_expr_t
*last_countp
, /* IN_OUT */
395 char *last_modifp
, /* IN_OUT */
396 struct db_command
*cmd_table
)
399 db_command(last_cmdp
, last_countp
, last_modifp
, cmd_table
);
401 } while (db_read_token() == tSEMI_COLON
&& db_cmd_loop_done
== 0);
405 extern void db_system_stats(void);
407 struct db_command db_show_all_cmds
[] = {
409 { "slocks", (db_func
) db_show_all_slocks
, 0, 0 },
410 #endif /* USLOCK_DEBUG */
411 { "acts", db_show_all_acts
, 0, 0 },
412 { "spaces", db_show_all_spaces
, 0, 0 },
413 { "tasks", db_show_all_acts
, 0, 0 },
414 /* temporary alias for sanity preservation */
415 { "threads", db_show_all_acts
, 0, 0 },
416 { "zones", db_show_all_zones
, 0, 0 },
417 { "vmtask", db_show_all_task_vm
, 0, 0 },
423 extern void db_show_thread_log(void);
424 extern void db_show_one_lock(lock_t
*);
425 extern void db_show_etap_log(db_expr_t
, int, db_expr_t
, char *);
427 struct db_command db_show_cmds
[] = {
428 { "all", 0, 0, db_show_all_cmds
},
429 { "registers", db_show_regs
, 0, 0 },
430 { "variables", (db_func
) db_show_variable
, CS_OWN
, 0 },
431 { "breaks", (db_func
) db_listbreak_cmd
, 0, 0 },
432 { "watches", (db_func
) db_listwatch_cmd
, 0, 0 },
433 { "task", db_show_one_task
, 0, 0 },
434 { "act", db_show_one_act
, 0, 0 },
435 { "shuttle", db_show_shuttle
, 0, 0 },
437 { "thread", db_show_one_thread
, 0, 0 },
439 { "vmtask", db_show_one_task_vm
, 0, 0 },
440 { "macro", (db_func
) db_show_macro
, CS_OWN
, 0 },
441 { "runq", (db_func
) db_show_runq
, 0, 0 },
442 { "map", (db_func
) vm_map_print
, 0, 0 },
443 { "object", (db_func
) vm_object_print
, 0, 0 },
444 { "page", (db_func
) vm_page_print
, 0, 0 },
445 { "copy", (db_func
) vm_map_copy_print
, 0, 0 },
446 { "port", (db_func
) ipc_port_print
, 0, 0 },
447 { "pset", (db_func
) ipc_pset_print
, 0, 0 },
448 { "kmsg", (db_func
) ipc_kmsg_print
, 0, 0 },
449 { "msg", (db_func
) ipc_msg_print
, 0, 0 },
450 { "ipc_port", db_show_port_id
, 0, 0 },
451 { "lock", (db_func
)db_show_one_lock
, 0, 0 },
453 { "xmm_obj", (db_func
) xmm_obj_print
, 0, 0 },
454 { "xmm_reply", (db_func
) xmm_reply_print
, 0, 0 },
455 #endif /* NORMA_VM */
457 { "tr", db_show_tr
, 0, 0 },
458 #endif /* TRACE_BUFFER */
459 { "space", db_show_one_space
, 0, 0 },
460 { "system", (db_func
) db_system_stats
, 0, 0 },
461 { "zone", db_show_one_zone
, 0, 0 },
462 { "simple_lock", db_show_one_simple_lock
, 0, 0 },
463 { "thread_log", (db_func
)db_show_thread_log
, 0, 0 },
464 { "subsystem", db_show_subsystem
, 0, 0 },
465 { "shuttle", db_show_shuttle
, 0, 0 },
466 { "etap_log", db_show_etap_log
, 0, 0 },
471 #define db_switch_cpu kdb_on
472 extern void db_switch_cpu(int);
473 #endif /* NCPUS > 1 */
475 struct db_command db_command_table
[] = {
476 #if DB_MACHINE_COMMANDS
478 /* this must be the first entry, if it exists */
479 { "machine", 0, 0, 0 },
481 { "print", (db_func
) db_print_cmd
, CS_OWN
, 0 },
482 { "examine", db_examine_cmd
, CS_MORE
|CS_SET_DOT
, 0 },
483 { "x", db_examine_cmd
, CS_MORE
|CS_SET_DOT
, 0 },
484 { "xf", db_examine_forward
, CS_SET_DOT
, 0 },
485 { "xb", db_examine_backward
, CS_SET_DOT
, 0 },
486 { "search", (db_func
) db_search_cmd
, CS_OWN
|CS_SET_DOT
, 0 },
487 { "set", (db_func
) db_set_cmd
, CS_OWN
, 0 },
488 { "write", db_write_cmd
, CS_MORE
|CS_SET_DOT
, 0 },
489 { "w", db_write_cmd
, CS_MORE
|CS_SET_DOT
, 0 },
490 { "delete", (db_func
) db_delete_cmd
, CS_OWN
, 0 },
491 { "d", (db_func
) db_delete_cmd
, CS_OWN
, 0 },
492 { "break", db_breakpoint_cmd
, CS_MORE
, 0 },
493 { "dwatch", db_deletewatch_cmd
, CS_MORE
, 0 },
494 { "watch", db_watchpoint_cmd
, CS_MORE
, 0 },
495 { "step", db_single_step_cmd
, 0, 0 },
496 { "s", db_single_step_cmd
, 0, 0 },
497 { "continue", db_continue_cmd
, 0, 0 },
498 { "c", db_continue_cmd
, 0, 0 },
499 { "gdb", db_continue_gdb
, 0, 0 },
500 { "until", db_trace_until_call_cmd
, 0, 0 },
502 /* As per request of DNoveck, CR1550, leave this disabled */
503 #if 0 /* until CR1440 is fixed, to avoid toe-stubbing */
504 { "next", db_trace_until_matching_cmd
, 0, 0 },
506 { "match", db_trace_until_matching_cmd
, 0 , 0 },
507 { "trace", db_stack_trace_cmd
, 0, 0 },
508 { "cond", (db_func
) db_cond_cmd
, CS_OWN
, 0 },
509 { "call", (db_func
) db_fncall
, CS_OWN
, 0 },
510 { "macro", (db_func
) db_def_macro_cmd
, CS_OWN
, 0 },
511 { "dmacro", (db_func
) db_del_macro_cmd
, CS_OWN
, 0 },
512 { "show", 0, 0, db_show_cmds
},
514 { "cpu", (db_func
) db_switch_cpu
, 0, 0 },
515 #endif /* NCPUS > 1 */
516 { "reboot", (db_func
) db_reboot
, 0, 0 },
518 { "lt", db_low_trace
, CS_MORE
|CS_SET_DOT
, 0 },
519 { "dl", db_display_long
, CS_MORE
|CS_SET_DOT
, 0 },
520 { "dr", db_display_real
, CS_MORE
|CS_SET_DOT
, 0 },
521 { "dv", db_display_virtual
, CS_MORE
|CS_SET_DOT
, 0 },
522 { "dm", db_display_mappings
, CS_MORE
|CS_SET_DOT
, 0 },
523 { "dp", db_display_pmap
, CS_MORE
, 0 },
524 { "ds", db_display_save
, CS_MORE
|CS_SET_DOT
, 0 },
525 { "dx", db_display_xregs
, CS_MORE
|CS_SET_DOT
, 0 },
526 { "dk", db_display_kmod
, CS_MORE
, 0 },
527 { "gs", db_gsnoop
, CS_MORE
, 0 },
532 /* this function should be called to install the machine dependent
533 commands. It should be called before the debugger is enabled */
534 void db_machine_commands_install(struct db_command
*ptr
)
536 db_command_table
[0].more
= ptr
;
541 struct db_command
*db_last_command
= 0;
542 db_expr_t db_last_count
= 0;
543 char db_last_modifier
[TOK_STRING_SIZE
] = { '\0' };
548 struct db_command
*cmd
= db_command_table
;
550 while (cmd
->name
!= 0) {
551 db_printf("%-12s", cmd
->name
);
557 int (*ddb_display
)(void);
560 db_command_loop(void)
563 jmp_buf_t
*prev
= db_recover
;
564 extern int db_output_line
;
565 extern int db_macro_level
;
566 extern int db_indent
;
569 * Initialize 'prev' and 'next' to dot.
577 db_cmd_loop_done
= 0;
578 while (!db_cmd_loop_done
) {
579 (void) _setjmp(db_recover
= &db_jmpbuf
);
581 if (db_print_position() != 0)
588 (void) db_read_line("!!");
589 db_command_list(&db_last_command
, &db_last_count
,
590 db_last_modifier
, db_command_table
);
601 struct db_lex_context lex_context
;
603 db_cmd_loop_done
= 0;
605 db_save_lex_context(&lex_context
);
606 db_switch_input(cmd
, size
);
608 db_command_list(&db_last_command
, &db_last_count
,
609 db_last_modifier
, db_command_table
);
611 db_restore_lex_context(&lex_context
);
612 return(db_cmd_loop_done
== 0);
618 extern int db_macro_level
;
622 extern boolean_t kdebug_mode
;
624 if (s
) kprintf(DBG_DEBUG
, s
);
628 #endif /* defined(__alpha) */
635 _longjmp(db_recover
, (s
== (char *)1) ? 2 : 1);
647 * Call random function:
655 db_expr_t args
[MAXARGS
];
658 db_expr_t (*func
)(db_expr_t
, ...);
661 if (!db_expression(&fn_addr
)) {
662 db_printf("Bad function \"%s\"\n", db_tok_string
);
666 func
= (db_expr_t (*) (db_expr_t
, ...)) fn_addr
;
670 if (db_expression(&args
[0])) {
672 while ((t
= db_read_token()) == tCOMMA
) {
673 if (nargs
== MAXARGS
) {
674 db_printf("Too many arguments\n");
678 if (!db_expression(&args
[nargs
])) {
679 db_printf("Argument missing\n");
687 if (db_read_token() != tRPAREN
) {
693 while (nargs
< MAXARGS
) {
697 retval
= (*func
)(args
[0], args
[1], args
[2], args
[3], args
[4],
698 args
[5], args
[6], args
[7], args
[8], args
[9] );
699 db_printf(" %#n\n", retval
);
709 for (p
= modif
; *p
; p
++)