2 * This software is part of the SBCL system. See the README file for
5 * This software is derived from the CMU CL system, which was
6 * written at Carnegie Mellon University and released into the
7 * public domain. The software is in the public domain and is
8 * provided with absolutely no warranty. See the COPYING and CREDITS
9 * files for more information.
13 #include <sys/types.h>
17 #include <sys/resource.h>
24 /* Almost all of this file can be skipped if we're not supporting LDB. */
25 #if defined(LISP_FEATURE_SB_LDB)
35 #include "interrupt.h"
37 /* When we need to do command input, we use this stream, which is not
38 * in general stdin, so that things will "work" (as well as being
39 * thrown into ldb can be considered "working":-) even in a process
40 * where standard input has been redirected to a file or pipe.
42 * (We could set up output to go to a special ldb_out stream for the
43 * same reason, but there's been no pressure for that so far.)
45 * The enter-the-ldb-monitor function is responsible for setting up
47 static FILE *ldb_in = 0;
48 static int ldb_in_fd = -1;
50 typedef void cmd(char **ptr);
52 static cmd dump_cmd, print_cmd, quit_cmd, help_cmd;
53 static cmd flush_cmd, search_cmd, regs_cmd, exit_cmd;
54 static cmd print_context_cmd;
55 static cmd backtrace_cmd, purify_cmd, catchers_cmd;
56 static cmd grab_sigs_cmd;
61 void (*fn)(char **ptr);
62 } supported_cmds[] = {
63 {"help", "Display this help information.", help_cmd},
64 {"?", "(an alias for help)", help_cmd},
65 {"backtrace", "Backtrace up to N frames.", backtrace_cmd},
66 {"catchers", "Print a list of all the active catchers.", catchers_cmd},
67 {"context", "Print interrupt context number I.", print_context_cmd},
68 {"dump", "Dump memory starting at ADDRESS for COUNT words.", dump_cmd},
69 {"d", "(an alias for dump)", dump_cmd},
70 {"exit", "Exit this instance of the monitor.", exit_cmd},
71 {"flush", "Flush all temp variables.", flush_cmd},
72 /* (Classic CMU CL had a "gc" command here, which seems like a
73 * reasonable idea, but the code was stale (incompatible with
74 * gencgc) so I just flushed it. -- WHN 20000814 */
75 {"grab-signals", "Set the signal handlers to call LDB.", grab_sigs_cmd},
76 {"kill", "Kill ourself with signal number N (useful if running under gdb)",
78 {"purify", "Purify. (Caveat purifier!)", purify_cmd},
79 {"print", "Print object at ADDRESS.", print_cmd},
80 {"p", "(an alias for print)", print_cmd},
81 {"quit", "Quit.", quit_cmd},
82 {"regs", "Display current Lisp registers.", regs_cmd},
83 {"search", "Search for TYPE starting at ADDRESS for a max of COUNT words.", search_cmd},
84 {"s", "(an alias for search)", search_cmd},
88 static jmp_buf curbuf;
91 visible(unsigned char c)
93 if (c < ' ' || c > '~')
102 static char *lastaddr = 0;
103 static int lastcount = 20;
105 char *addr = lastaddr;
106 int count = lastcount, displacement;
109 addr = parse_addr(ptr);
112 count = parse_number(ptr);
116 printf("COUNT must be non-zero.\n");
129 while (count-- > 0) {
131 printf("0x%08lX: ", (unsigned long) addr);
133 printf("0x%08X: ", (u32) addr);
135 if (is_valid_lisp_addr((os_vm_address_t)addr)) {
137 unsigned long *lptr = (unsigned long *)addr;
139 u32 *lptr = (u32 *)addr;
141 unsigned short *sptr = (unsigned short *)addr;
142 unsigned char *cptr = (unsigned char *)addr;
144 printf("0x%08lx 0x%04x 0x%04x 0x%02x 0x%02x 0x%02x 0x%02x %c%c%c%c\n", lptr[0], sptr[0], sptr[1], cptr[0], cptr[1], cptr[2], cptr[3], visible(cptr[0]), visible(cptr[1]), visible(cptr[2]), visible(cptr[3]));
147 printf("invalid Lisp-level address\n");
149 addr += displacement;
156 print_cmd(char **ptr)
158 lispobj obj = parse_lispobj(ptr);
166 kill(getpid(), parse_number(ptr));
172 printf("CSP\t=\t0x%08lX\n", (unsigned long)current_control_stack_pointer);
173 printf("FP\t=\t0x%08lX\n", (unsigned long)current_control_frame_pointer);
174 #if !defined(__i386__)
175 printf("BSP\t=\t0x%08X\n", (unsigned long)current_binding_stack_pointer);
178 printf("BSP\t=\t0x%08lx\n",
179 (unsigned long)SymbolValue(BINDING_STACK_POINTER));
182 printf("DYNAMIC\t=\t0x%08lx\n", (unsigned long)DYNAMIC_SPACE_START);
183 #if defined(__i386__)
184 printf("ALLOC\t=\t0x%08lx\n",
185 (unsigned long)SymbolValue(ALLOCATION_POINTER));
187 printf("ALLOC\t=\t0x%08X\n",
188 (unsigned long)dynamic_space_free_pointer);
189 printf("TRIGGER\t=\t0x%08lx\n", (unsigned long)current_auto_gc_trigger);
191 printf("STATIC\t=\t0x%08lx\n",
192 (unsigned long)SymbolValue(STATIC_SPACE_FREE_POINTER));
193 printf("RDONLY\t=\t0x%08lx\n",
194 (unsigned long)SymbolValue(READ_ONLY_SPACE_FREE_POINTER));
197 printf("FLAGS\t=\t0x%08x\n", current_flags_register);
202 search_cmd(char **ptr)
204 static int lastval = 0, lastcount = 0;
205 static lispobj *start = 0, *end = 0;
210 val = parse_number(ptr);
211 if (val < 0 || val > 0xff) {
212 printf("can only search for single bytes\n");
216 addr = (lispobj *)native_pointer((long)parse_addr(ptr));
218 count = parse_number(ptr);
221 /* Specified value and address, but no count. Only one. */
226 /* Specified a value, but no address, so search same range. */
232 /* Specified nothing, search again for val. */
242 printf("searching for 0x%x at 0x%08lX\n", val, (unsigned long)end);
244 while (search_for_type(val, &end, &count)) {
245 printf("found 0x%x at 0x%08lX:\n", val, (unsigned long)end);
249 if (widetag_of(obj) == SIMPLE_FUN_HEADER_WIDETAG) {
250 print((long)addr | FUN_POINTER_LOWTAG);
251 } else if (lowtag_of(obj) == OTHER_IMMEDIATE_0_LOWTAG ||
252 lowtag_of(obj) == OTHER_IMMEDIATE_1_LOWTAG) {
253 print((lispobj)addr | OTHER_POINTER_LOWTAG);
255 print((lispobj)addr);
262 /* (There used to be call_cmd() here, to call known-at-cold-init-time
263 * Lisp functions from ldb, but it bitrotted and was deleted in
264 * sbcl-0.7.5.1. See older CVS versions if you want to resuscitate
268 flush_cmd(char **ptr)
278 printf("Really quit? [y] ");
280 fgets(buf, sizeof(buf), ldb_in);
281 if (buf[0] == 'y' || buf[0] == 'Y' || buf[0] == '\n')
290 for (cmd = supported_cmds; cmd->cmd != NULL; cmd++)
291 if (cmd->help != NULL)
292 printf("%s\t%s\n", cmd->cmd, cmd->help);
304 purify_cmd(char **ptr)
310 print_context(os_context_t *context)
314 for (i = 0; i < NREGS; i++) {
315 printf("%s:\t", lisp_register_names[i]);
317 brief_print((lispobj)(*os_context_register_addr(context,
320 brief_print((lispobj)(*os_context_register_addr(context,i)));
323 printf("PC:\t\t 0x%08lx\n",
324 (unsigned long)(*os_context_pc_addr(context)));
328 print_context_cmd(char **ptr)
332 free = SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX)>>2;
337 index = parse_number(ptr);
339 if ((index >= 0) && (index < free)) {
340 printf("There are %d interrupt contexts.\n", free);
341 printf("printing context %d\n", index);
342 print_context(lisp_interrupt_contexts[index]);
344 printf("There aren't that many/few contexts.\n");
345 printf("There are %d interrupt contexts.\n", free);
349 printf("There are no interrupt contexts!\n");
351 printf("There are %d interrupt contexts.\n", free);
352 printf("printing context %d\n", free - 1);
353 print_context(lisp_interrupt_contexts[free - 1]);
359 backtrace_cmd(char **ptr)
361 void backtrace(int frames);
365 n = parse_number(ptr);
369 printf("Backtrace:\n");
374 catchers_cmd(char **ptr)
376 struct catch_block *catch;
378 catch = (struct catch_block *)SymbolValue(CURRENT_CATCH_BLOCK);
381 printf("There are no active catchers!\n");
383 while (catch != NULL) {
385 printf("0x%08lX:\n\tuwp: 0x%08lX\n\tfp: 0x%08lX\n\tcode: 0x%08lx\n\tentry: 0x%08lx\n\ttag: ",
386 (unsigned long)catch, (unsigned long)(catch->current_uwp),
387 (unsigned long)(catch->current_cont),
391 printf("0x%08lX:\n\tuwp: 0x%08lX\n\tfp: 0x%08lX\n\tcode: 0x%08lx\n\tentry: 0x%08lx\n\ttag: ",
392 (unsigned long)catch, (unsigned long)(catch->current_uwp),
393 (unsigned long)(catch->current_cont),
394 (unsigned long)component_ptr_from_pc((void*)catch->entry_pc) +
395 OTHER_POINTER_LOWTAG,
396 (unsigned long)catch->entry_pc);
398 brief_print((lispobj)catch->tag);
399 catch = catch->previous_catch;
405 grab_sigs_cmd(char **ptr)
407 extern void sigint_init(void);
409 printf("Grabbing signals.\n");
416 struct cmd *cmd, *found;
418 char *line, *ptr, *token;
422 ldb_in = fopen("/dev/tty","r+");
423 ldb_in_fd = fileno(ldb_in);
429 line = fgets(buf, sizeof(buf), ldb_in);
431 if (isatty(ldb_in_fd)) {
436 fprintf(stderr, "\nEOF on something other than a tty.\n");
441 if ((token = parse_token(&ptr)) == NULL)
445 for (cmd = supported_cmds; cmd->cmd != NULL; cmd++) {
446 if (strcmp(token, cmd->cmd) == 0) {
451 else if (strncmp(token, cmd->cmd, strlen(token)) == 0) {
459 printf("``%s'' is ambiguous.\n", token);
460 else if (found == NULL)
461 printf("unknown command: ``%s''\n", token);
474 bcopy(curbuf, oldbuf, sizeof(oldbuf));
476 printf("LDB monitor\n");
484 bcopy(oldbuf, curbuf, sizeof(curbuf));
493 #endif /* defined(LISP_FEATURE_SB_LDB) */
495 /* what we do when things go badly wrong at a low level */
497 monitor_or_something()
499 #if defined(LISP_FEATURE_SB_LDB)
502 fprintf(stderr, "There's no LDB in this build; exiting.\n");