Home | History | Annotate | Line # | Download | only in crash
crash.c revision 1.3
      1  1.3  christos /*	$NetBSD: crash.c,v 1.3 2011/04/10 20:39:42 christos Exp $	*/
      2  1.1        ad 
      3  1.1        ad /*-
      4  1.1        ad  * Copyright (c) 2009 The NetBSD Foundation, Inc.
      5  1.1        ad  * All rights reserved.
      6  1.1        ad  *
      7  1.1        ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1        ad  * by Andrew Doran.
      9  1.1        ad  *
     10  1.1        ad  * Redistribution and use in source and binary forms, with or without
     11  1.1        ad  * modification, are permitted provided that the following conditions
     12  1.1        ad  * are met:
     13  1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14  1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15  1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.1        ad  *    documentation and/or other materials provided with the distribution.
     18  1.1        ad  *
     19  1.1        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.1        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.1        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.1        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.1        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.1        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.1        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.1        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.1        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.1        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.1        ad  * POSSIBILITY OF SUCH DAMAGE.
     30  1.1        ad  */
     31  1.1        ad 
     32  1.1        ad #include <sys/cdefs.h>
     33  1.1        ad #ifndef lint
     34  1.3  christos __RCSID("$NetBSD: crash.c,v 1.3 2011/04/10 20:39:42 christos Exp $");
     35  1.1        ad #endif /* not lint */
     36  1.1        ad 
     37  1.1        ad #include <ddb/ddb.h>
     38  1.1        ad 
     39  1.1        ad #include <sys/fcntl.h>
     40  1.1        ad #include <sys/mman.h>
     41  1.1        ad #include <sys/ioctl.h>
     42  1.1        ad 
     43  1.1        ad #include <machine/frame.h>
     44  1.1        ad 
     45  1.1        ad #include <stdarg.h>
     46  1.1        ad #include <stdlib.h>
     47  1.1        ad #include <unistd.h>
     48  1.1        ad #include <getopt.h>
     49  1.1        ad #include <errno.h>
     50  1.1        ad #include <histedit.h>
     51  1.1        ad #include <paths.h>
     52  1.1        ad #include <kvm.h>
     53  1.1        ad #include <err.h>
     54  1.1        ad #include <ctype.h>
     55  1.3  christos #include <util.h>
     56  1.1        ad 
     57  1.1        ad #include "extern.h"
     58  1.1        ad 
     59  1.1        ad #define	MAXSTAB	(16 * 1024 * 1024)
     60  1.1        ad 
     61  1.1        ad db_regs_t	ddb_regs;
     62  1.3  christos 
     63  1.3  christos static kvm_t		*kd;
     64  1.3  christos static History		*hist;
     65  1.3  christos static HistEvent	he;
     66  1.3  christos static EditLine		*elptr;
     67  1.3  christos static char		imgrelease[16];
     68  1.3  christos static FILE		*ofp;
     69  1.1        ad 
     70  1.1        ad static struct nlist nl[] = {
     71  1.1        ad #define	X_OSRELEASE	0
     72  1.1        ad 	{ .n_name = "_osrelease" },
     73  1.1        ad #define	X_PANICSTR	1
     74  1.1        ad 	{ .n_name = "_panicstr" },
     75  1.1        ad 	{ .n_name = NULL },
     76  1.1        ad };
     77  1.1        ad 
     78  1.3  christos static void
     79  1.3  christos cleanup(void)
     80  1.3  christos {
     81  1.3  christos 	if (ofp != stdout) {
     82  1.3  christos 		(void)fflush(ofp);
     83  1.3  christos 		(void)pclose(ofp);
     84  1.3  christos 		ofp = stdout;
     85  1.3  christos 	}
     86  1.3  christos 	el_end(elptr);
     87  1.3  christos 	history_end(hist);
     88  1.3  christos }
     89  1.3  christos 
     90  1.1        ad void
     91  1.1        ad db_vprintf(const char *fmt, va_list ap)
     92  1.1        ad {
     93  1.1        ad 	char buf[1024];
     94  1.1        ad 	int b, c;
     95  1.1        ad 
     96  1.1        ad 	c = vsnprintf(buf, sizeof(buf), fmt, ap);
     97  1.1        ad 	for (b = 0; b < c; b++) {
     98  1.1        ad 		db_putchar(buf[b]);
     99  1.1        ad 	}
    100  1.1        ad }
    101  1.1        ad 
    102  1.1        ad void
    103  1.1        ad db_printf(const char *fmt, ...)
    104  1.1        ad {
    105  1.1        ad 	va_list ap;
    106  1.1        ad 
    107  1.1        ad 	va_start(ap, fmt);
    108  1.1        ad 	db_vprintf(fmt, ap);
    109  1.1        ad 	va_end(ap);
    110  1.1        ad }
    111  1.1        ad 
    112  1.1        ad void
    113  1.1        ad db_write_bytes(db_addr_t addr, size_t size, const char *str)
    114  1.1        ad {
    115  1.1        ad 
    116  1.2     lukem 	if ((size_t)kvm_write(kd, addr, str, size) != size) {
    117  1.1        ad 		warnx("kvm_write(%p, %zd): %s", (void *)addr, size,
    118  1.1        ad 		    kvm_geterr(kd));
    119  1.1        ad 		longjmp(db_recover);
    120  1.1        ad 	}
    121  1.1        ad }
    122  1.1        ad 
    123  1.1        ad void
    124  1.1        ad db_read_bytes(db_addr_t addr, size_t size, char *str)
    125  1.1        ad {
    126  1.1        ad 
    127  1.2     lukem 	if ((size_t)kvm_read(kd, addr, str, size) != size) {
    128  1.1        ad 		warnx("kvm_read(%p, %zd): %s", (void *)addr, size,
    129  1.1        ad 		    kvm_geterr(kd));
    130  1.1        ad 		longjmp(db_recover);
    131  1.1        ad 	}
    132  1.1        ad }
    133  1.1        ad 
    134  1.1        ad void *
    135  1.1        ad db_alloc(size_t sz)
    136  1.1        ad {
    137  1.1        ad 
    138  1.3  christos 	return emalloc(sz);
    139  1.1        ad }
    140  1.1        ad 
    141  1.1        ad void *
    142  1.1        ad db_zalloc(size_t sz)
    143  1.1        ad {
    144  1.1        ad 
    145  1.3  christos 	return ecalloc(1, sz);
    146  1.1        ad }
    147  1.1        ad 
    148  1.1        ad void
    149  1.1        ad db_free(void *p, size_t sz)
    150  1.1        ad {
    151  1.1        ad 
    152  1.1        ad 	free(p);
    153  1.1        ad }
    154  1.1        ad 
    155  1.1        ad static void
    156  1.1        ad punt(void)
    157  1.1        ad {
    158  1.1        ad 
    159  1.1        ad 	db_printf("This command can only be used in-kernel.\n");
    160  1.1        ad }
    161  1.1        ad 
    162  1.1        ad void
    163  1.1        ad db_breakpoint_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    164  1.1        ad     const char *modif)
    165  1.1        ad {
    166  1.1        ad 
    167  1.1        ad 	punt();
    168  1.1        ad }
    169  1.1        ad 
    170  1.1        ad void
    171  1.1        ad db_continue_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    172  1.1        ad     const char *modif)
    173  1.1        ad {
    174  1.1        ad 
    175  1.1        ad 	db_cmd_loop_done = true;
    176  1.1        ad }
    177  1.1        ad 
    178  1.1        ad void
    179  1.1        ad db_delete_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    180  1.1        ad     const char *modif)
    181  1.1        ad {
    182  1.1        ad 
    183  1.1        ad 	punt();
    184  1.1        ad }
    185  1.1        ad 
    186  1.1        ad void
    187  1.1        ad db_deletewatch_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    188  1.1        ad     const char *modif)
    189  1.1        ad {
    190  1.1        ad 
    191  1.1        ad 	punt();
    192  1.1        ad }
    193  1.1        ad 
    194  1.1        ad 
    195  1.1        ad void
    196  1.1        ad db_trace_until_matching_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    197  1.1        ad     const char *modif)
    198  1.1        ad {
    199  1.1        ad 
    200  1.1        ad 	punt();
    201  1.1        ad }
    202  1.1        ad 
    203  1.1        ad 
    204  1.1        ad void
    205  1.1        ad db_single_step_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    206  1.1        ad     const char *modif)
    207  1.1        ad {
    208  1.1        ad 
    209  1.1        ad 	punt();
    210  1.1        ad }
    211  1.1        ad 
    212  1.1        ad 
    213  1.1        ad void
    214  1.1        ad db_trace_until_call_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    215  1.1        ad     const char *modif)
    216  1.1        ad {
    217  1.1        ad 
    218  1.1        ad 	punt();
    219  1.1        ad }
    220  1.1        ad 
    221  1.1        ad 
    222  1.1        ad void
    223  1.1        ad db_watchpoint_cmd(db_expr_t addr, bool have_addr, db_expr_t count,
    224  1.1        ad     const char *modif)
    225  1.1        ad {
    226  1.1        ad 
    227  1.1        ad 	punt();
    228  1.1        ad }
    229  1.1        ad 
    230  1.1        ad int
    231  1.1        ad db_readline(char *lstart, int lsize)
    232  1.1        ad {
    233  1.1        ad 	const char *el;
    234  1.1        ad 	char *pcmd;
    235  1.1        ad 	int cnt;
    236  1.1        ad 
    237  1.1        ad 	db_force_whitespace();
    238  1.1        ad 
    239  1.1        ad 	/* Close any open pipe. */
    240  1.1        ad 	if (ofp != stdout) {
    241  1.1        ad 		(void)fflush(ofp);
    242  1.1        ad 		(void)pclose(ofp);
    243  1.1        ad 		ofp = stdout;
    244  1.1        ad 	}
    245  1.1        ad 
    246  1.1        ad 	/* Read next command. */
    247  1.1        ad 	el = el_gets(elptr, &cnt);
    248  1.3  christos 	if (el == NULL) {	/* EOF */
    249  1.3  christos 		exit(EXIT_SUCCESS);
    250  1.1        ad 	}
    251  1.1        ad 
    252  1.1        ad 	/* Save to history, and copy to caller's buffer. */
    253  1.1        ad 	history(hist, &he, H_ENTER, el);
    254  1.1        ad 	strlcpy(lstart, el, lsize);
    255  1.1        ad 	if (cnt >= lsize) {
    256  1.1        ad 		cnt = lsize - 1;
    257  1.1        ad 	}
    258  1.1        ad 	lstart[cnt] = '\0';
    259  1.1        ad 	if (cnt > 0 && lstart[cnt - 1] == '\n') {
    260  1.1        ad 		lstart[cnt - 1] = '\0';
    261  1.1        ad 	}
    262  1.1        ad 
    263  1.1        ad 	/* Need to open a pipe? If not, return now. */
    264  1.1        ad 	pcmd = strchr(lstart, '|');
    265  1.1        ad 	if (pcmd == NULL) {
    266  1.1        ad 		return strlen(lstart);
    267  1.1        ad 	}
    268  1.1        ad 
    269  1.1        ad 	/* Open a pipe to specified command, redirect output. */
    270  1.1        ad 	assert(ofp == stdout);
    271  1.3  christos 	for (*pcmd++ = '\0'; isspace((unsigned char)*pcmd); pcmd++) {
    272  1.1        ad 		/* nothing */
    273  1.1        ad 	}
    274  1.1        ad 	errno = 0;
    275  1.1        ad 	ofp = popen(pcmd, "w");
    276  1.1        ad 	if (ofp == NULL) {
    277  1.1        ad 		warn("opening pipe for command `%s'", pcmd);
    278  1.1        ad 		*lstart = '\0';
    279  1.1        ad 	}
    280  1.1        ad 	return strlen(lstart);
    281  1.1        ad }
    282  1.1        ad 
    283  1.1        ad void
    284  1.1        ad db_check_interrupt(void)
    285  1.1        ad {
    286  1.1        ad 
    287  1.1        ad }
    288  1.1        ad 
    289  1.1        ad int
    290  1.1        ad cngetc(void)
    291  1.1        ad {
    292  1.1        ad 
    293  1.1        ad 	fprintf(stderr, "cngetc\n");
    294  1.1        ad 	abort();
    295  1.1        ad }
    296  1.1        ad 
    297  1.1        ad void
    298  1.1        ad cnputc(int c)
    299  1.1        ad {
    300  1.1        ad 
    301  1.1        ad 	putc(c, ofp);
    302  1.1        ad }
    303  1.1        ad 
    304  1.1        ad static void
    305  1.1        ad usage(void)
    306  1.1        ad {
    307  1.1        ad 
    308  1.1        ad 	fprintf(stderr,
    309  1.1        ad 	    "usage: %s [options]\n\n"
    310  1.1        ad 	    "-M mem\tspecify memory file\n"
    311  1.1        ad 	    "-N nlist\tspecify name list file (default /dev/ksyms)\n",
    312  1.1        ad 	    getprogname());
    313  1.1        ad 	exit(EXIT_FAILURE);
    314  1.1        ad }
    315  1.1        ad 
    316  1.1        ad static const char *
    317  1.1        ad prompt(void)
    318  1.1        ad {
    319  1.1        ad 
    320  1.1        ad 	return "crash> ";
    321  1.1        ad }
    322  1.1        ad 
    323  1.1        ad int
    324  1.1        ad main(int argc, char **argv)
    325  1.1        ad {
    326  1.1        ad 	const char *nlistf, *memf;
    327  1.1        ad 	uintptr_t panicstr;
    328  1.1        ad 	struct winsize ws;
    329  1.1        ad 	struct stat sb;
    330  1.1        ad 	size_t sz;
    331  1.1        ad 	void *elf;
    332  1.1        ad 	int fd, ch;
    333  1.1        ad 	char c;
    334  1.1        ad 
    335  1.1        ad 	nlistf = _PATH_KSYMS;
    336  1.1        ad 	memf = _PATH_MEM;
    337  1.1        ad 	ofp = stdout;
    338  1.1        ad 
    339  1.3  christos 	setprogname(argv[0]);
    340  1.3  christos 
    341  1.1        ad 	/*
    342  1.1        ad 	 * Parse options.
    343  1.1        ad 	 */
    344  1.1        ad 	while ((ch = getopt(argc, argv, "M:N:")) != -1) {
    345  1.1        ad 		switch (ch) {
    346  1.1        ad 		case 'M':
    347  1.1        ad 			memf = optarg;
    348  1.1        ad 			break;
    349  1.1        ad 		case 'N':
    350  1.1        ad 			nlistf = optarg;
    351  1.1        ad 			break;
    352  1.1        ad 		default:
    353  1.1        ad 			usage();
    354  1.1        ad 		}
    355  1.1        ad 	}
    356  1.1        ad 	argc -= optind;
    357  1.1        ad 	argv += optind;
    358  1.1        ad 
    359  1.1        ad 	/*
    360  1.1        ad 	 * Print a list of images, and allow user to select.
    361  1.1        ad 	 */
    362  1.1        ad 	/* XXX */
    363  1.1        ad 
    364  1.1        ad 	/*
    365  1.1        ad 	 * Open the images (crash dump and symbol table).
    366  1.1        ad 	 */
    367  1.1        ad 	kd = kvm_open(nlistf, memf, NULL, O_RDONLY, getprogname());
    368  1.1        ad 	if (kd == NULL) {
    369  1.1        ad 		return EXIT_FAILURE;
    370  1.1        ad 	}
    371  1.1        ad 	fd = open(nlistf, O_RDONLY);
    372  1.3  christos 	if (fd == -1)  {
    373  1.3  christos 		err(EXIT_FAILURE, "open `%s'", nlistf);
    374  1.1        ad 	}
    375  1.3  christos 	if (fstat(fd, &sb) == -1) {
    376  1.3  christos 		err(EXIT_FAILURE, "stat `%s'", nlistf);
    377  1.1        ad 	}
    378  1.1        ad 	if ((sb.st_mode & S_IFMT) != S_IFREG) {	/* XXX ksyms */
    379  1.1        ad 		sz = MAXSTAB;
    380  1.1        ad 		elf = malloc(sz);
    381  1.1        ad 		if (elf == NULL) {
    382  1.3  christos 			err(EXIT_FAILURE, "malloc(%zu)", sz);
    383  1.1        ad 		}
    384  1.1        ad 		sz = read(fd, elf, sz);
    385  1.3  christos 		if ((ssize_t)sz == -1) {
    386  1.3  christos 			err(EXIT_FAILURE, "read `%s'", nlistf);
    387  1.1        ad 		}
    388  1.1        ad 		if (sz == MAXSTAB) {
    389  1.3  christos 			errx(EXIT_FAILURE, "symbol table > %d bytes", MAXSTAB);
    390  1.1        ad 		}
    391  1.1        ad 	} else {
    392  1.1        ad 		sz = sb.st_size;
    393  1.1        ad 		elf = mmap(NULL, sz, PROT_READ, MAP_FILE, fd, 0);
    394  1.1        ad 		if (elf == MAP_FAILED) {
    395  1.3  christos 			err(EXIT_FAILURE, "mmap `%s'", nlistf);
    396  1.1        ad 		}
    397  1.1        ad 	}
    398  1.1        ad 
    399  1.1        ad 	/*
    400  1.1        ad 	 * Print kernel & crash versions.
    401  1.1        ad 	 */
    402  1.1        ad 	if (kvm_nlist(kd, nl) == -1) {
    403  1.1        ad 		errx(EXIT_FAILURE, "kvm_nlist: %s", kvm_geterr(kd));
    404  1.1        ad 	}
    405  1.1        ad 	if ((size_t)kvm_read(kd, nl[X_OSRELEASE].n_value, imgrelease,
    406  1.1        ad 	    sizeof(imgrelease)) != sizeof(imgrelease)) {
    407  1.1        ad 		errx(EXIT_FAILURE, "cannot read osrelease: %s",
    408  1.1        ad 		    kvm_geterr(kd));
    409  1.1        ad 	}
    410  1.1        ad 	printf("Crash version %s, image version %s.\n", osrelease, imgrelease);
    411  1.1        ad 	if (strcmp(osrelease, imgrelease) != 0) {
    412  1.1        ad 		printf("WARNING: versions differ, you may not be able to "
    413  1.1        ad 		    "examine this image.\n");
    414  1.1        ad 	}
    415  1.1        ad 
    416  1.1        ad 	/*
    417  1.1        ad 	 * Print the panic string, if any.
    418  1.1        ad 	 */
    419  1.1        ad 	if ((size_t)kvm_read(kd, nl[X_PANICSTR].n_value, &panicstr,
    420  1.1        ad 	    sizeof(panicstr)) != sizeof(panicstr)) {
    421  1.1        ad 		errx(EXIT_FAILURE, "cannot read panicstr: %s",
    422  1.1        ad 		    kvm_geterr(kd));
    423  1.1        ad 	}
    424  1.1        ad 	if (strcmp(memf, _PATH_MEM) == 0) {
    425  1.1        ad 		printf("Output from a running system is unreliable.\n");
    426  1.1        ad 	} else if (panicstr == 0) {
    427  1.1        ad 		printf("System does not appear to have panicked.\n");
    428  1.1        ad 	} else {
    429  1.1        ad 		printf("System panicked: ");
    430  1.1        ad 		for (;;) {
    431  1.1        ad 			if ((size_t)kvm_read(kd, panicstr, &c, sizeof(c)) !=
    432  1.1        ad 			    sizeof(c)) {
    433  1.1        ad 				errx(EXIT_FAILURE, "cannot read *panicstr: %s",
    434  1.1        ad 				    kvm_geterr(kd));
    435  1.1        ad 			}
    436  1.1        ad 			if (c == '\0') {
    437  1.1        ad 				break;
    438  1.1        ad 			}
    439  1.1        ad 			putchar(c);
    440  1.1        ad 			panicstr++;
    441  1.1        ad 		}
    442  1.1        ad 		putchar('\n');
    443  1.1        ad 	}
    444  1.1        ad 
    445  1.1        ad 	/*
    446  1.1        ad 	 * Initialize line editing.
    447  1.1        ad 	 */
    448  1.1        ad 	hist = history_init();
    449  1.1        ad 	history(hist, &he, H_SETSIZE, 100);
    450  1.1        ad 	elptr = el_init(getprogname(), stdin, stdout, stderr);
    451  1.1        ad 	el_set(elptr, EL_EDITOR, "emacs");
    452  1.1        ad 	el_set(elptr, EL_SIGNAL, 1);
    453  1.1        ad 	el_set(elptr, EL_HIST, history, hist);
    454  1.1        ad 	el_set(elptr, EL_PROMPT, prompt);
    455  1.1        ad 	el_source(elptr, NULL);
    456  1.1        ad 
    457  1.3  christos 	atexit(cleanup);
    458  1.3  christos 
    459  1.1        ad 	/*
    460  1.1        ad 	 * Initialize ddb.
    461  1.1        ad 	 */
    462  1.1        ad 	if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) != -1) {
    463  1.1        ad 		db_max_width = ws.ws_col;
    464  1.1        ad 	}
    465  1.1        ad 	db_mach_init(kd);
    466  1.1        ad 	ddb_init(sz, elf, (char *)elf + sz);
    467  1.1        ad 
    468  1.1        ad 	/*
    469  1.1        ad 	 * Debug it!
    470  1.1        ad 	 */
    471  1.1        ad 	db_command_loop();
    472  1.1        ad 
    473  1.1        ad 	/*
    474  1.3  christos 	 * Finish.
    475  1.1        ad 	 */
    476  1.3  christos 	return EXIT_SUCCESS;
    477  1.1        ad }
    478