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 #include "genesis/static-symbols.h"
38 #include "genesis/primitive-objects.h"
42 /* When we need to do command input, we use this stream, which is not
43 * in general stdin, so that things will "work" (as well as being
44 * thrown into ldb can be considered "working":-) even in a process
45 * where standard input has been redirected to a file or pipe.
47 * (We could set up output to go to a special ldb_out stream for the
48 * same reason, but there's been no pressure for that so far.)
50 * The enter-the-ldb-monitor function is responsible for setting up
52 static FILE *ldb_in = 0;
53 static int ldb_in_fd = -1;
55 typedef void cmd(char **ptr);
57 static cmd dump_cmd, print_cmd, quit_cmd, help_cmd;
58 static cmd flush_cmd, search_cmd, regs_cmd, exit_cmd;
59 static cmd print_context_cmd;
60 static cmd backtrace_cmd, purify_cmd, catchers_cmd;
61 static cmd grab_sigs_cmd;
66 void (*fn)(char **ptr);
67 } supported_cmds[] = {
68 {"help", "Display this help information.", help_cmd},
69 {"?", "(an alias for help)", help_cmd},
70 {"backtrace", "Backtrace up to N frames.", backtrace_cmd},
71 {"catchers", "Print a list of all the active catchers.", catchers_cmd},
72 {"context", "Print interrupt context number I.", print_context_cmd},
73 {"dump", "Dump memory starting at ADDRESS for COUNT words.", dump_cmd},
74 {"d", "(an alias for dump)", dump_cmd},
75 {"exit", "Exit this instance of the monitor.", exit_cmd},
76 {"flush", "Flush all temp variables.", flush_cmd},
77 /* (Classic CMU CL had a "gc" command here, which seems like a
78 * reasonable idea, but the code was stale (incompatible with
79 * gencgc) so I just flushed it. -- WHN 20000814 */
80 {"grab-signals", "Set the signal handlers to call LDB.", grab_sigs_cmd},
81 {"kill", "Kill ourself with signal number N (useful if running under gdb)",
83 {"purify", "Purify. (Caveat purifier!)", purify_cmd},
84 {"print", "Print object at ADDRESS.", print_cmd},
85 {"p", "(an alias for print)", print_cmd},
86 {"quit", "Quit.", quit_cmd},
87 {"regs", "Display current Lisp registers.", regs_cmd},
88 {"search", "Search for TYPE starting at ADDRESS for a max of COUNT words.", search_cmd},
89 {"s", "(an alias for search)", search_cmd},
93 static jmp_buf curbuf;
96 visible(unsigned char c)
98 if (c < ' ' || c > '~')
107 static char *lastaddr = 0;
108 static int lastcount = 20;
110 char *addr = lastaddr;
111 int count = lastcount, displacement;
114 addr = parse_addr(ptr);
117 count = parse_number(ptr);
121 printf("COUNT must be non-zero.\n");
134 while (count-- > 0) {
135 #ifndef LISP_FEATURE_ALPHA
136 printf("0x%08lX: ", (unsigned long) addr);
138 printf("0x%08X: ", (u32) addr);
140 if (is_valid_lisp_addr((os_vm_address_t)addr)) {
141 #ifndef LISP_FEATURE_ALPHA
142 unsigned long *lptr = (unsigned long *)addr;
144 u32 *lptr = (u32 *)addr;
146 unsigned short *sptr = (unsigned short *)addr;
147 unsigned char *cptr = (unsigned char *)addr;
149 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]));
152 printf("invalid Lisp-level address\n");
154 addr += displacement;
161 print_cmd(char **ptr)
163 lispobj obj = parse_lispobj(ptr);
171 kill(getpid(), parse_number(ptr));
177 printf("CSP\t=\t0x%08lX\n", (unsigned long)current_control_stack_pointer);
178 printf("FP\t=\t0x%08lX\n", (unsigned long)current_control_frame_pointer);
179 #if !(defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
180 printf("BSP\t=\t0x%08X\n", (unsigned long)current_binding_stack_pointer);
183 #if (defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
184 printf("BSP\t=\t0x%08lx\n",
185 (unsigned long)SymbolValue(BINDING_STACK_POINTER));
188 printf("DYNAMIC\t=\t0x%08lx\n", (unsigned long)DYNAMIC_SPACE_START);
189 #if (defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
190 printf("ALLOC\t=\t0x%08lx\n",
191 (unsigned long)SymbolValue(ALLOCATION_POINTER));
193 printf("ALLOC\t=\t0x%08X\n",
194 (unsigned long)dynamic_space_free_pointer);
195 printf("TRIGGER\t=\t0x%08lx\n", (unsigned long)current_auto_gc_trigger);
197 printf("STATIC\t=\t0x%08lx\n",
198 (unsigned long)SymbolValue(STATIC_SPACE_FREE_POINTER));
199 printf("RDONLY\t=\t0x%08lx\n",
200 (unsigned long)SymbolValue(READ_ONLY_SPACE_FREE_POINTER));
205 search_cmd(char **ptr)
207 static int lastval = 0, lastcount = 0;
208 static lispobj *start = 0, *end = 0;
213 val = parse_number(ptr);
214 if (val < 0 || val > 0xff) {
215 printf("can only search for single bytes\n");
219 addr = (lispobj *)native_pointer((long)parse_addr(ptr));
221 count = parse_number(ptr);
224 /* Specified value and address, but no count. Only one. */
229 /* Specified a value, but no address, so search same range. */
235 /* Specified nothing, search again for val. */
245 printf("searching for 0x%x at 0x%08lX\n", val, (unsigned long)end);
247 while (search_for_type(val, &end, &count)) {
248 printf("found 0x%x at 0x%08lX:\n", val, (unsigned long)end);
252 if (widetag_of(obj) == SIMPLE_FUN_HEADER_WIDETAG) {
253 print((long)addr | FUN_POINTER_LOWTAG);
254 } else if (lowtag_of(obj) == OTHER_IMMEDIATE_0_LOWTAG ||
255 lowtag_of(obj) == OTHER_IMMEDIATE_1_LOWTAG) {
256 print((lispobj)addr | OTHER_POINTER_LOWTAG);
258 print((lispobj)addr);
265 /* (There used to be call_cmd() here, to call known-at-cold-init-time
266 * Lisp functions from ldb, but it bitrotted and was deleted in
267 * sbcl-0.7.5.1. See older CVS versions if you want to resuscitate
271 flush_cmd(char **ptr)
281 printf("Really quit? [y] ");
283 fgets(buf, sizeof(buf), ldb_in);
284 if (buf[0] == 'y' || buf[0] == 'Y' || buf[0] == '\n')
293 for (cmd = supported_cmds; cmd->cmd != NULL; cmd++)
294 if (cmd->help != NULL)
295 printf("%s\t%s\n", cmd->cmd, cmd->help);
307 purify_cmd(char **ptr)
313 print_context(os_context_t *context)
317 for (i = 0; i < NREGS; i++) {
318 printf("%s:\t", lisp_register_names[i]);
319 #ifdef LISP_FEATURE_X86
320 brief_print((lispobj)(*os_context_register_addr(context,
323 brief_print((lispobj)(*os_context_register_addr(context,i)));
326 #ifdef LISP_FEATURE_DARWIN
327 printf("DAR:\t\t 0x%08lx\n", (unsigned long)(*os_context_register_addr(context, 41)));
328 printf("DSISR:\t\t 0x%08lx\n", (unsigned long)(*os_context_register_addr(context, 42)));
330 printf("PC:\t\t 0x%08lx\n",
331 (unsigned long)(*os_context_pc_addr(context)));
335 print_context_cmd(char **ptr)
338 struct thread *thread=arch_os_get_current_thread();
340 free = SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,thread)>>2;
345 index = parse_number(ptr);
347 if ((index >= 0) && (index < free)) {
348 printf("There are %d interrupt contexts.\n", free);
349 printf("printing context %d\n", index);
350 print_context(thread->interrupt_contexts[index]);
352 printf("There aren't that many/few contexts.\n");
353 printf("There are %d interrupt contexts.\n", free);
357 printf("There are no interrupt contexts!\n");
359 printf("There are %d interrupt contexts.\n", free);
360 printf("printing context %d\n", free - 1);
361 print_context(thread->interrupt_contexts[free - 1]);
367 backtrace_cmd(char **ptr)
369 void backtrace(int frames);
373 n = parse_number(ptr);
377 printf("Backtrace:\n");
382 catchers_cmd(char **ptr)
384 struct catch_block *catch;
385 struct thread *thread=arch_os_get_current_thread();
387 catch = (struct catch_block *)SymbolValue(CURRENT_CATCH_BLOCK,thread);
390 printf("There are no active catchers!\n");
392 while (catch != NULL) {
393 #if !(defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
394 printf("0x%08lX:\n\tuwp: 0x%08lX\n\tfp: 0x%08lX\n\tcode: 0x%08lx\n\tentry: 0x%08lx\n\ttag: ",
395 (unsigned long)catch, (unsigned long)(catch->current_uwp),
396 (unsigned long)(catch->current_cont),
400 printf("0x%08lX:\n\tuwp: 0x%08lX\n\tfp: 0x%08lX\n\tcode: 0x%08lx\n\tentry: 0x%08lx\n\ttag: ",
401 (unsigned long)catch, (unsigned long)(catch->current_uwp),
402 (unsigned long)(catch->current_cont),
403 (unsigned long)component_ptr_from_pc((void*)catch->entry_pc) +
404 OTHER_POINTER_LOWTAG,
405 (unsigned long)catch->entry_pc);
407 brief_print((lispobj)catch->tag);
408 catch = catch->previous_catch;
414 grab_sigs_cmd(char **ptr)
416 extern void sigint_init(void);
418 printf("Grabbing signals.\n");
425 struct cmd *cmd, *found;
427 char *line, *ptr, *token;
431 ldb_in = fopen("/dev/tty","r+");
432 ldb_in_fd = fileno(ldb_in);
438 line = fgets(buf, sizeof(buf), ldb_in);
440 if (isatty(ldb_in_fd)) {
445 fprintf(stderr, "\nEOF on something other than a tty.\n");
450 if ((token = parse_token(&ptr)) == NULL)
454 for (cmd = supported_cmds; cmd->cmd != NULL; cmd++) {
455 if (strcmp(token, cmd->cmd) == 0) {
460 else if (strncmp(token, cmd->cmd, strlen(token)) == 0) {
468 printf("``%s'' is ambiguous.\n", token);
469 else if (found == NULL)
470 printf("unknown command: ``%s''\n", token);
483 bcopy(curbuf, oldbuf, sizeof(oldbuf));
485 printf("LDB monitor\n");
493 bcopy(oldbuf, curbuf, sizeof(curbuf));
502 #endif /* defined(LISP_FEATURE_SB_LDB) */
504 /* what we do when things go badly wrong at a low level */
506 monitor_or_something()
508 #if defined(LISP_FEATURE_SB_LDB)
512 "The system is too badly corrupted or confused to continue at the Lisp\n\
513 level. If the system had been compiled with the SB-LDB feature, we'd drop\n\
514 into the LDB low-level debugger now. But there's no LDB in this build, so\n\
515 we can't really do anything but just exit, sorry.\n");