xref: /freebsd/sys/ddb/db_command.c (revision 19d2c78f34c92ee9dd4c9096e3f4b0c0534f34d5)
15b81b6b3SRodney W. Grimes /*
25b81b6b3SRodney W. Grimes  * Mach Operating System
35b81b6b3SRodney W. Grimes  * Copyright (c) 1991,1990 Carnegie Mellon University
45b81b6b3SRodney W. Grimes  * All Rights Reserved.
55b81b6b3SRodney W. Grimes  *
65b81b6b3SRodney W. Grimes  * Permission to use, copy, modify and distribute this software and its
75b81b6b3SRodney W. Grimes  * documentation is hereby granted, provided that both the copyright
85b81b6b3SRodney W. Grimes  * notice and this permission notice appear in all copies of the
95b81b6b3SRodney W. Grimes  * software, derivative works or modified versions, and any portions
105b81b6b3SRodney W. Grimes  * thereof, and that both notices appear in supporting documentation.
115b81b6b3SRodney W. Grimes  *
125b81b6b3SRodney W. Grimes  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
135b81b6b3SRodney W. Grimes  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
145b81b6b3SRodney W. Grimes  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
155b81b6b3SRodney W. Grimes  *
165b81b6b3SRodney W. Grimes  * Carnegie Mellon requests users of this software to return to
175b81b6b3SRodney W. Grimes  *
185b81b6b3SRodney W. Grimes  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
195b81b6b3SRodney W. Grimes  *  School of Computer Science
205b81b6b3SRodney W. Grimes  *  Carnegie Mellon University
215b81b6b3SRodney W. Grimes  *  Pittsburgh PA 15213-3890
225b81b6b3SRodney W. Grimes  *
235b81b6b3SRodney W. Grimes  * any improvements or extensions that they make and grant Carnegie the
245b81b6b3SRodney W. Grimes  * rights to redistribute these changes.
250edf66ecSRodney W. Grimes  *
26c3aac50fSPeter Wemm  * $FreeBSD$
275b81b6b3SRodney W. Grimes  */
280edf66ecSRodney W. Grimes 
295b81b6b3SRodney W. Grimes /*
305b81b6b3SRodney W. Grimes  *	Author: David B. Golub, Carnegie Mellon University
315b81b6b3SRodney W. Grimes  *	Date:	7/90
325b81b6b3SRodney W. Grimes  */
330edf66ecSRodney W. Grimes 
345b81b6b3SRodney W. Grimes /*
355b81b6b3SRodney W. Grimes  * Command dispatcher.
365b81b6b3SRodney W. Grimes  */
37f540b106SGarrett Wollman #include <sys/param.h>
380ec81012SJohn Polstra #include <sys/linker_set.h>
3919d2c78fSDima Dorfman #include <sys/lock.h>
4019d2c78fSDima Dorfman #include <sys/mutex.h>
4119d2c78fSDima Dorfman #include <sys/proc.h>
42ad146781SPaul Traina #include <sys/reboot.h>
4319d2c78fSDima Dorfman #include <sys/signalvar.h>
44f540b106SGarrett Wollman #include <sys/systm.h>
45ce9edcf5SPoul-Henning Kamp #include <sys/cons.h>
463000820aSPoul-Henning Kamp 
475ccbc3ccSBruce Evans #include <ddb/ddb.h>
48058284fcSBruce Evans #include <ddb/db_command.h>
495b81b6b3SRodney W. Grimes #include <ddb/db_lex.h>
505b81b6b3SRodney W. Grimes #include <ddb/db_output.h>
515b81b6b3SRodney W. Grimes 
5299b95aa2SAndrew R. Reiter #include <machine/md_var.h>
530b1ae809SJulian Elischer #include <machine/setjmp.h>
545b81b6b3SRodney W. Grimes 
555b81b6b3SRodney W. Grimes /*
565b81b6b3SRodney W. Grimes  * Exported global variables
575b81b6b3SRodney W. Grimes  */
585b81b6b3SRodney W. Grimes boolean_t	db_cmd_loop_done;
595b81b6b3SRodney W. Grimes db_addr_t	db_dot;
606337f4efSBruce Evans jmp_buf		db_jmpbuf;
615b81b6b3SRodney W. Grimes db_addr_t	db_last_addr;
625b81b6b3SRodney W. Grimes db_addr_t	db_prev;
635b81b6b3SRodney W. Grimes db_addr_t	db_next;
64f41325dbSPeter Wemm 
65f41325dbSPeter Wemm SET_DECLARE(db_cmd_set, struct command);
66f41325dbSPeter Wemm SET_DECLARE(db_show_cmd_set, struct command);
675b81b6b3SRodney W. Grimes 
68f73a856dSPoul-Henning Kamp static db_cmdfcn_t	db_fncall;
69ad146781SPaul Traina static db_cmdfcn_t	db_gdb;
7019d2c78fSDima Dorfman static db_cmdfcn_t	db_kill;
715370c3b6SPeter Wemm static db_cmdfcn_t	db_reset;
72ad146781SPaul Traina 
736337f4efSBruce Evans /* XXX this is actually forward-static. */
746337f4efSBruce Evans extern struct command	db_show_cmds[];
756337f4efSBruce Evans 
765b81b6b3SRodney W. Grimes /*
775b81b6b3SRodney W. Grimes  * if 'ed' style: 'dot' is set at start of last item printed,
785b81b6b3SRodney W. Grimes  * and '+' points to next line.
795b81b6b3SRodney W. Grimes  * Otherwise: 'dot' points to next item, '..' points to last.
805b81b6b3SRodney W. Grimes  */
81f73a856dSPoul-Henning Kamp static boolean_t	db_ed_style = TRUE;
825b81b6b3SRodney W. Grimes 
835b81b6b3SRodney W. Grimes /*
845b81b6b3SRodney W. Grimes  * Utility routine - discard tokens through end-of-line.
855b81b6b3SRodney W. Grimes  */
865b81b6b3SRodney W. Grimes void
875b81b6b3SRodney W. Grimes db_skip_to_eol()
885b81b6b3SRodney W. Grimes {
895b81b6b3SRodney W. Grimes 	int	t;
905b81b6b3SRodney W. Grimes 	do {
915b81b6b3SRodney W. Grimes 	    t = db_read_token();
925b81b6b3SRodney W. Grimes 	} while (t != tEOL);
935b81b6b3SRodney W. Grimes }
945b81b6b3SRodney W. Grimes 
955b81b6b3SRodney W. Grimes /*
965b81b6b3SRodney W. Grimes  * Results of command search.
975b81b6b3SRodney W. Grimes  */
985b81b6b3SRodney W. Grimes #define	CMD_UNIQUE	0
995b81b6b3SRodney W. Grimes #define	CMD_FOUND	1
1005b81b6b3SRodney W. Grimes #define	CMD_NONE	2
1015b81b6b3SRodney W. Grimes #define	CMD_AMBIGUOUS	3
1025b81b6b3SRodney W. Grimes #define	CMD_HELP	4
1035b81b6b3SRodney W. Grimes 
1046337f4efSBruce Evans static void	db_cmd_list __P((struct command *table,
105f41325dbSPeter Wemm 				 struct command **aux_tablep,
106f41325dbSPeter Wemm 				 struct command **aux_tablep_end));
107f73a856dSPoul-Henning Kamp static int	db_cmd_search __P((char *name, struct command *table,
1086337f4efSBruce Evans 				   struct command **aux_tablep,
109f41325dbSPeter Wemm 				   struct command **aux_tablep_end,
110058284fcSBruce Evans 				   struct command **cmdp));
111f73a856dSPoul-Henning Kamp static void	db_command __P((struct command **last_cmdp,
1126337f4efSBruce Evans 				struct command *cmd_table,
113f41325dbSPeter Wemm 				struct command **aux_cmd_tablep,
114f41325dbSPeter Wemm 				struct command **aux_cmd_tablep_end));
115058284fcSBruce Evans 
1165b81b6b3SRodney W. Grimes /*
1175b81b6b3SRodney W. Grimes  * Search for command prefix.
1185b81b6b3SRodney W. Grimes  */
119f73a856dSPoul-Henning Kamp static int
120f41325dbSPeter Wemm db_cmd_search(name, table, aux_tablep, aux_tablep_end, cmdp)
1215b81b6b3SRodney W. Grimes 	char *		name;
1225b81b6b3SRodney W. Grimes 	struct command	*table;
1236337f4efSBruce Evans 	struct command	**aux_tablep;
124f41325dbSPeter Wemm 	struct command	**aux_tablep_end;
1255b81b6b3SRodney W. Grimes 	struct command	**cmdp;	/* out */
1265b81b6b3SRodney W. Grimes {
1275b81b6b3SRodney W. Grimes 	struct command	*cmd;
1286337f4efSBruce Evans 	struct command	**aux_cmdp;
1295b81b6b3SRodney W. Grimes 	int		result = CMD_NONE;
1305b81b6b3SRodney W. Grimes 
1315b81b6b3SRodney W. Grimes 	for (cmd = table; cmd->name != 0; cmd++) {
1325b81b6b3SRodney W. Grimes 	    register char *lp;
1335b81b6b3SRodney W. Grimes 	    register char *rp;
1345b81b6b3SRodney W. Grimes 	    register int  c;
1355b81b6b3SRodney W. Grimes 
1365b81b6b3SRodney W. Grimes 	    lp = name;
1375b81b6b3SRodney W. Grimes 	    rp = cmd->name;
1385b81b6b3SRodney W. Grimes 	    while ((c = *lp) == *rp) {
1395b81b6b3SRodney W. Grimes 		if (c == 0) {
1405b81b6b3SRodney W. Grimes 		    /* complete match */
1415b81b6b3SRodney W. Grimes 		    *cmdp = cmd;
1425b81b6b3SRodney W. Grimes 		    return (CMD_UNIQUE);
1435b81b6b3SRodney W. Grimes 		}
1445b81b6b3SRodney W. Grimes 		lp++;
1455b81b6b3SRodney W. Grimes 		rp++;
1465b81b6b3SRodney W. Grimes 	    }
1475b81b6b3SRodney W. Grimes 	    if (c == 0) {
1485b81b6b3SRodney W. Grimes 		/* end of name, not end of command -
1495b81b6b3SRodney W. Grimes 		   partial match */
1505b81b6b3SRodney W. Grimes 		if (result == CMD_FOUND) {
1515b81b6b3SRodney W. Grimes 		    result = CMD_AMBIGUOUS;
1525b81b6b3SRodney W. Grimes 		    /* but keep looking for a full match -
1535b81b6b3SRodney W. Grimes 		       this lets us match single letters */
1545b81b6b3SRodney W. Grimes 		}
1555b81b6b3SRodney W. Grimes 		else {
1565b81b6b3SRodney W. Grimes 		    *cmdp = cmd;
1575b81b6b3SRodney W. Grimes 		    result = CMD_FOUND;
1585b81b6b3SRodney W. Grimes 		}
1595b81b6b3SRodney W. Grimes 	    }
1605b81b6b3SRodney W. Grimes 	}
1616337f4efSBruce Evans 	if (result == CMD_NONE && aux_tablep != 0)
1626337f4efSBruce Evans 	    /* XXX repeat too much code. */
163f41325dbSPeter Wemm 	    for (aux_cmdp = aux_tablep; aux_cmdp < aux_tablep_end; aux_cmdp++) {
1646337f4efSBruce Evans 		register char *lp;
1656337f4efSBruce Evans 		register char *rp;
1666337f4efSBruce Evans 		register int  c;
1676337f4efSBruce Evans 
1686337f4efSBruce Evans 		lp = name;
1696337f4efSBruce Evans 		rp = (*aux_cmdp)->name;
1706337f4efSBruce Evans 		while ((c = *lp) == *rp) {
1716337f4efSBruce Evans 		    if (c == 0) {
1726337f4efSBruce Evans 			/* complete match */
1736337f4efSBruce Evans 			*cmdp = *aux_cmdp;
1746337f4efSBruce Evans 			return (CMD_UNIQUE);
1756337f4efSBruce Evans 		    }
1766337f4efSBruce Evans 		    lp++;
1776337f4efSBruce Evans 		    rp++;
1786337f4efSBruce Evans 		}
1796337f4efSBruce Evans 		if (c == 0) {
1806337f4efSBruce Evans 		    /* end of name, not end of command -
1816337f4efSBruce Evans 		       partial match */
1826337f4efSBruce Evans 		    if (result == CMD_FOUND) {
1836337f4efSBruce Evans 			result = CMD_AMBIGUOUS;
1846337f4efSBruce Evans 			/* but keep looking for a full match -
1856337f4efSBruce Evans 			   this lets us match single letters */
1866337f4efSBruce Evans 		    }
1876337f4efSBruce Evans 		    else {
1886337f4efSBruce Evans 			*cmdp = *aux_cmdp;
1896337f4efSBruce Evans 			result = CMD_FOUND;
1906337f4efSBruce Evans 		    }
1916337f4efSBruce Evans 		}
1926337f4efSBruce Evans 	    }
1935b81b6b3SRodney W. Grimes 	if (result == CMD_NONE) {
1945b81b6b3SRodney W. Grimes 	    /* check for 'help' */
1955b81b6b3SRodney W. Grimes 		if (name[0] == 'h' && name[1] == 'e'
1965b81b6b3SRodney W. Grimes 		    && name[2] == 'l' && name[3] == 'p')
1975b81b6b3SRodney W. Grimes 			result = CMD_HELP;
1985b81b6b3SRodney W. Grimes 	}
1995b81b6b3SRodney W. Grimes 	return (result);
2005b81b6b3SRodney W. Grimes }
2015b81b6b3SRodney W. Grimes 
202f73a856dSPoul-Henning Kamp static void
203f41325dbSPeter Wemm db_cmd_list(table, aux_tablep, aux_tablep_end)
2045b81b6b3SRodney W. Grimes 	struct command *table;
2056337f4efSBruce Evans 	struct command **aux_tablep;
206f41325dbSPeter Wemm 	struct command **aux_tablep_end;
2075b81b6b3SRodney W. Grimes {
2085b81b6b3SRodney W. Grimes 	register struct command *cmd;
2096337f4efSBruce Evans 	register struct command **aux_cmdp;
2105b81b6b3SRodney W. Grimes 
2115b81b6b3SRodney W. Grimes 	for (cmd = table; cmd->name != 0; cmd++) {
2125b81b6b3SRodney W. Grimes 	    db_printf("%-12s", cmd->name);
2135b81b6b3SRodney W. Grimes 	    db_end_line();
2145b81b6b3SRodney W. Grimes 	}
2156337f4efSBruce Evans 	if (aux_tablep == 0)
2166337f4efSBruce Evans 	    return;
217f41325dbSPeter Wemm 	for (aux_cmdp = aux_tablep; aux_cmdp < aux_tablep_end; aux_cmdp++) {
2186337f4efSBruce Evans 	    db_printf("%-12s", (*aux_cmdp)->name);
2196337f4efSBruce Evans 	    db_end_line();
2206337f4efSBruce Evans 	}
2215b81b6b3SRodney W. Grimes }
2225b81b6b3SRodney W. Grimes 
223f73a856dSPoul-Henning Kamp static void
224f41325dbSPeter Wemm db_command(last_cmdp, cmd_table, aux_cmd_tablep, aux_cmd_tablep_end)
2255b81b6b3SRodney W. Grimes 	struct command	**last_cmdp;	/* IN_OUT */
2265b81b6b3SRodney W. Grimes 	struct command	*cmd_table;
2276337f4efSBruce Evans 	struct command	**aux_cmd_tablep;
228f41325dbSPeter Wemm 	struct command	**aux_cmd_tablep_end;
2295b81b6b3SRodney W. Grimes {
2305b81b6b3SRodney W. Grimes 	struct command	*cmd;
2315b81b6b3SRodney W. Grimes 	int		t;
2325b81b6b3SRodney W. Grimes 	char		modif[TOK_STRING_SIZE];
2335b81b6b3SRodney W. Grimes 	db_expr_t	addr, count;
234381fe1aaSGarrett Wollman 	boolean_t	have_addr = FALSE;
2355b81b6b3SRodney W. Grimes 	int		result;
2365b81b6b3SRodney W. Grimes 
2375b81b6b3SRodney W. Grimes 	t = db_read_token();
2385b81b6b3SRodney W. Grimes 	if (t == tEOL) {
2395b81b6b3SRodney W. Grimes 	    /* empty line repeats last command, at 'next' */
2405b81b6b3SRodney W. Grimes 	    cmd = *last_cmdp;
2415b81b6b3SRodney W. Grimes 	    addr = (db_expr_t)db_next;
2425b81b6b3SRodney W. Grimes 	    have_addr = FALSE;
2435b81b6b3SRodney W. Grimes 	    count = 1;
2445b81b6b3SRodney W. Grimes 	    modif[0] = '\0';
2455b81b6b3SRodney W. Grimes 	}
2465b81b6b3SRodney W. Grimes 	else if (t == tEXCL) {
247976794d9SBruce Evans 	    db_fncall((db_expr_t)0, (boolean_t)0, (db_expr_t)0, (char *)0);
2485b81b6b3SRodney W. Grimes 	    return;
2495b81b6b3SRodney W. Grimes 	}
2505b81b6b3SRodney W. Grimes 	else if (t != tIDENT) {
2515b81b6b3SRodney W. Grimes 	    db_printf("?\n");
2525b81b6b3SRodney W. Grimes 	    db_flush_lex();
2535b81b6b3SRodney W. Grimes 	    return;
2545b81b6b3SRodney W. Grimes 	}
2555b81b6b3SRodney W. Grimes 	else {
2565b81b6b3SRodney W. Grimes 	    /*
2575b81b6b3SRodney W. Grimes 	     * Search for command
2585b81b6b3SRodney W. Grimes 	     */
2595b81b6b3SRodney W. Grimes 	    while (cmd_table) {
2605b81b6b3SRodney W. Grimes 		result = db_cmd_search(db_tok_string,
2615b81b6b3SRodney W. Grimes 				       cmd_table,
2626337f4efSBruce Evans 				       aux_cmd_tablep,
263f41325dbSPeter Wemm 				       aux_cmd_tablep_end,
2645b81b6b3SRodney W. Grimes 				       &cmd);
2655b81b6b3SRodney W. Grimes 		switch (result) {
2665b81b6b3SRodney W. Grimes 		    case CMD_NONE:
2675b81b6b3SRodney W. Grimes 			db_printf("No such command\n");
2685b81b6b3SRodney W. Grimes 			db_flush_lex();
2695b81b6b3SRodney W. Grimes 			return;
2705b81b6b3SRodney W. Grimes 		    case CMD_AMBIGUOUS:
2715b81b6b3SRodney W. Grimes 			db_printf("Ambiguous\n");
2725b81b6b3SRodney W. Grimes 			db_flush_lex();
2735b81b6b3SRodney W. Grimes 			return;
2745b81b6b3SRodney W. Grimes 		    case CMD_HELP:
275f41325dbSPeter Wemm 			db_cmd_list(cmd_table, aux_cmd_tablep, aux_cmd_tablep_end);
2765b81b6b3SRodney W. Grimes 			db_flush_lex();
2775b81b6b3SRodney W. Grimes 			return;
2785b81b6b3SRodney W. Grimes 		    default:
2795b81b6b3SRodney W. Grimes 			break;
2805b81b6b3SRodney W. Grimes 		}
2815b81b6b3SRodney W. Grimes 		if ((cmd_table = cmd->more) != 0) {
2826337f4efSBruce Evans 		    /* XXX usually no more aux's. */
2836337f4efSBruce Evans 		    aux_cmd_tablep = 0;
2846337f4efSBruce Evans 		    if (cmd_table == db_show_cmds)
285f41325dbSPeter Wemm 			aux_cmd_tablep = SET_BEGIN(db_show_cmd_set);
286f41325dbSPeter Wemm 			aux_cmd_tablep_end = SET_LIMIT(db_show_cmd_set);
2876337f4efSBruce Evans 
2885b81b6b3SRodney W. Grimes 		    t = db_read_token();
2895b81b6b3SRodney W. Grimes 		    if (t != tIDENT) {
290f41325dbSPeter Wemm 			db_cmd_list(cmd_table, aux_cmd_tablep, aux_cmd_tablep_end);
2915b81b6b3SRodney W. Grimes 			db_flush_lex();
2925b81b6b3SRodney W. Grimes 			return;
2935b81b6b3SRodney W. Grimes 		    }
2945b81b6b3SRodney W. Grimes 		}
2955b81b6b3SRodney W. Grimes 	    }
2965b81b6b3SRodney W. Grimes 
2975b81b6b3SRodney W. Grimes 	    if ((cmd->flag & CS_OWN) == 0) {
2985b81b6b3SRodney W. Grimes 		/*
2995b81b6b3SRodney W. Grimes 		 * Standard syntax:
3005b81b6b3SRodney W. Grimes 		 * command [/modifier] [addr] [,count]
3015b81b6b3SRodney W. Grimes 		 */
3025b81b6b3SRodney W. Grimes 		t = db_read_token();
3035b81b6b3SRodney W. Grimes 		if (t == tSLASH) {
3045b81b6b3SRodney W. Grimes 		    t = db_read_token();
3055b81b6b3SRodney W. Grimes 		    if (t != tIDENT) {
3065b81b6b3SRodney W. Grimes 			db_printf("Bad modifier\n");
3075b81b6b3SRodney W. Grimes 			db_flush_lex();
3085b81b6b3SRodney W. Grimes 			return;
3095b81b6b3SRodney W. Grimes 		    }
3105b81b6b3SRodney W. Grimes 		    db_strcpy(modif, db_tok_string);
3115b81b6b3SRodney W. Grimes 		}
3125b81b6b3SRodney W. Grimes 		else {
3135b81b6b3SRodney W. Grimes 		    db_unread_token(t);
3145b81b6b3SRodney W. Grimes 		    modif[0] = '\0';
3155b81b6b3SRodney W. Grimes 		}
3165b81b6b3SRodney W. Grimes 
3175b81b6b3SRodney W. Grimes 		if (db_expression(&addr)) {
3185b81b6b3SRodney W. Grimes 		    db_dot = (db_addr_t) addr;
3195b81b6b3SRodney W. Grimes 		    db_last_addr = db_dot;
3205b81b6b3SRodney W. Grimes 		    have_addr = TRUE;
3215b81b6b3SRodney W. Grimes 		}
3225b81b6b3SRodney W. Grimes 		else {
3235b81b6b3SRodney W. Grimes 		    addr = (db_expr_t) db_dot;
3245b81b6b3SRodney W. Grimes 		    have_addr = FALSE;
3255b81b6b3SRodney W. Grimes 		}
3265b81b6b3SRodney W. Grimes 		t = db_read_token();
3275b81b6b3SRodney W. Grimes 		if (t == tCOMMA) {
3285b81b6b3SRodney W. Grimes 		    if (!db_expression(&count)) {
3295b81b6b3SRodney W. Grimes 			db_printf("Count missing\n");
3305b81b6b3SRodney W. Grimes 			db_flush_lex();
3315b81b6b3SRodney W. Grimes 			return;
3325b81b6b3SRodney W. Grimes 		    }
3335b81b6b3SRodney W. Grimes 		}
3345b81b6b3SRodney W. Grimes 		else {
3355b81b6b3SRodney W. Grimes 		    db_unread_token(t);
3365b81b6b3SRodney W. Grimes 		    count = -1;
3375b81b6b3SRodney W. Grimes 		}
3385b81b6b3SRodney W. Grimes 		if ((cmd->flag & CS_MORE) == 0) {
3395b81b6b3SRodney W. Grimes 		    db_skip_to_eol();
3405b81b6b3SRodney W. Grimes 		}
3415b81b6b3SRodney W. Grimes 	    }
3425b81b6b3SRodney W. Grimes 	}
3435b81b6b3SRodney W. Grimes 	*last_cmdp = cmd;
3445b81b6b3SRodney W. Grimes 	if (cmd != 0) {
3455b81b6b3SRodney W. Grimes 	    /*
3465b81b6b3SRodney W. Grimes 	     * Execute the command.
3475b81b6b3SRodney W. Grimes 	     */
3485b81b6b3SRodney W. Grimes 	    (*cmd->fcn)(addr, have_addr, count, modif);
3495b81b6b3SRodney W. Grimes 
3505b81b6b3SRodney W. Grimes 	    if (cmd->flag & CS_SET_DOT) {
3515b81b6b3SRodney W. Grimes 		/*
3525b81b6b3SRodney W. Grimes 		 * If command changes dot, set dot to
3535b81b6b3SRodney W. Grimes 		 * previous address displayed (if 'ed' style).
3545b81b6b3SRodney W. Grimes 		 */
3555b81b6b3SRodney W. Grimes 		if (db_ed_style) {
3565b81b6b3SRodney W. Grimes 		    db_dot = db_prev;
3575b81b6b3SRodney W. Grimes 		}
3585b81b6b3SRodney W. Grimes 		else {
3595b81b6b3SRodney W. Grimes 		    db_dot = db_next;
3605b81b6b3SRodney W. Grimes 		}
3615b81b6b3SRodney W. Grimes 	    }
3625b81b6b3SRodney W. Grimes 	    else {
3635b81b6b3SRodney W. Grimes 		/*
3645b81b6b3SRodney W. Grimes 		 * If command does not change dot,
3655b81b6b3SRodney W. Grimes 		 * set 'next' location to be the same.
3665b81b6b3SRodney W. Grimes 		 */
3675b81b6b3SRodney W. Grimes 		db_next = db_dot;
3685b81b6b3SRodney W. Grimes 	    }
3695b81b6b3SRodney W. Grimes 	}
3705b81b6b3SRodney W. Grimes }
3715b81b6b3SRodney W. Grimes 
3725b81b6b3SRodney W. Grimes /*
3735b81b6b3SRodney W. Grimes  * 'show' commands
3745b81b6b3SRodney W. Grimes  */
375f23b4c91SGarrett Wollman 
376f73a856dSPoul-Henning Kamp static struct command db_show_all_cmds[] = {
3775b81b6b3SRodney W. Grimes #if 0
3785b81b6b3SRodney W. Grimes 	{ "threads",	db_show_all_threads,	0,	0 },
37926f9a767SRodney W. Grimes #endif
3808a129caeSDavid Greenman 	{ "procs",	db_ps,			0,	0 },
3815b81b6b3SRodney W. Grimes 	{ (char *)0 }
3825b81b6b3SRodney W. Grimes };
3835b81b6b3SRodney W. Grimes 
384f73a856dSPoul-Henning Kamp static struct command db_show_cmds[] = {
3855b81b6b3SRodney W. Grimes 	{ "all",	0,			0,	db_show_all_cmds },
3865b81b6b3SRodney W. Grimes 	{ "registers",	db_show_regs,		0,	0 },
3875b81b6b3SRodney W. Grimes 	{ "breaks",	db_listbreak_cmd, 	0,	0 },
3885b81b6b3SRodney W. Grimes #if 0
3895b81b6b3SRodney W. Grimes 	{ "thread",	db_show_one_thread,	0,	0 },
3905b81b6b3SRodney W. Grimes #endif
3915b81b6b3SRodney W. Grimes #if 0
3925b81b6b3SRodney W. Grimes 	{ "port",	ipc_port_print,		0,	0 },
3935b81b6b3SRodney W. Grimes #endif
3945b81b6b3SRodney W. Grimes 	{ (char *)0, }
3955b81b6b3SRodney W. Grimes };
3965b81b6b3SRodney W. Grimes 
397f73a856dSPoul-Henning Kamp static struct command db_command_table[] = {
3985b81b6b3SRodney W. Grimes 	{ "print",	db_print_cmd,		0,	0 },
39923898040SJoerg Wunsch 	{ "p",		db_print_cmd,		0,	0 },
4005b81b6b3SRodney W. Grimes 	{ "examine",	db_examine_cmd,		CS_SET_DOT, 0 },
4015b81b6b3SRodney W. Grimes 	{ "x",		db_examine_cmd,		CS_SET_DOT, 0 },
4025b81b6b3SRodney W. Grimes 	{ "search",	db_search_cmd,		CS_OWN|CS_SET_DOT, 0 },
4035b81b6b3SRodney W. Grimes 	{ "set",	db_set_cmd,		CS_OWN,	0 },
4045b81b6b3SRodney W. Grimes 	{ "write",	db_write_cmd,		CS_MORE|CS_SET_DOT, 0 },
4055b81b6b3SRodney W. Grimes 	{ "w",		db_write_cmd,		CS_MORE|CS_SET_DOT, 0 },
4065b81b6b3SRodney W. Grimes 	{ "delete",	db_delete_cmd,		0,	0 },
4075b81b6b3SRodney W. Grimes 	{ "d",		db_delete_cmd,		0,	0 },
4085b81b6b3SRodney W. Grimes 	{ "break",	db_breakpoint_cmd,	0,	0 },
4095b81b6b3SRodney W. Grimes 	{ "dwatch",	db_deletewatch_cmd,	0,	0 },
4105b81b6b3SRodney W. Grimes 	{ "watch",	db_watchpoint_cmd,	CS_MORE,0 },
41117bbfb58SBrian S. Dean 	{ "dhwatch",	db_deletehwatch_cmd,	0,      0 },
41217bbfb58SBrian S. Dean 	{ "hwatch",	db_hwatchpoint_cmd,	0,      0 },
4135b81b6b3SRodney W. Grimes 	{ "step",	db_single_step_cmd,	0,	0 },
4145b81b6b3SRodney W. Grimes 	{ "s",		db_single_step_cmd,	0,	0 },
4155b81b6b3SRodney W. Grimes 	{ "continue",	db_continue_cmd,	0,	0 },
4165b81b6b3SRodney W. Grimes 	{ "c",		db_continue_cmd,	0,	0 },
4175b81b6b3SRodney W. Grimes 	{ "until",	db_trace_until_call_cmd,0,	0 },
4185b81b6b3SRodney W. Grimes 	{ "next",	db_trace_until_matching_cmd,0,	0 },
4195b81b6b3SRodney W. Grimes 	{ "match",	db_trace_until_matching_cmd,0,	0 },
4205b81b6b3SRodney W. Grimes 	{ "trace",	db_stack_trace_cmd,	0,	0 },
4215b81b6b3SRodney W. Grimes 	{ "call",	db_fncall,		CS_OWN,	0 },
4225b81b6b3SRodney W. Grimes 	{ "show",	0,			0,	db_show_cmds },
42351f4a07bSGuido van Rooij 	{ "ps",		db_ps,			0,	0 },
424ad146781SPaul Traina 	{ "gdb",	db_gdb,			0,	0 },
4255370c3b6SPeter Wemm 	{ "reset",	db_reset,		0,	0 },
42619d2c78fSDima Dorfman 	{ "kill",	db_kill,		CS_OWN,	0 },
4275b81b6b3SRodney W. Grimes 	{ (char *)0, }
4285b81b6b3SRodney W. Grimes };
4295b81b6b3SRodney W. Grimes 
430f73a856dSPoul-Henning Kamp static struct command	*db_last_command = 0;
4315b81b6b3SRodney W. Grimes 
432b5e8ce9fSBruce Evans #if 0
4335b81b6b3SRodney W. Grimes void
4345b81b6b3SRodney W. Grimes db_help_cmd()
4355b81b6b3SRodney W. Grimes {
4365b81b6b3SRodney W. Grimes 	struct command *cmd = db_command_table;
4375b81b6b3SRodney W. Grimes 
4385b81b6b3SRodney W. Grimes 	while (cmd->name != 0) {
4395b81b6b3SRodney W. Grimes 	    db_printf("%-12s", cmd->name);
4405b81b6b3SRodney W. Grimes 	    db_end_line();
4415b81b6b3SRodney W. Grimes 	    cmd++;
4425b81b6b3SRodney W. Grimes 	}
4435b81b6b3SRodney W. Grimes }
444b5e8ce9fSBruce Evans #endif
4455b81b6b3SRodney W. Grimes 
446b7aa38c1SBruce Evans /*
447b7aa38c1SBruce Evans  * At least one non-optional command must be implemented using
448b7aa38c1SBruce Evans  * DB_COMMAND() so that db_cmd_set gets created.  Here is one.
449b7aa38c1SBruce Evans  */
450b7aa38c1SBruce Evans DB_COMMAND(panic, db_panic)
4513eac4884SPoul-Henning Kamp {
452edf8a815SDavid Greenman 	panic("from debugger");
4533eac4884SPoul-Henning Kamp }
4543eac4884SPoul-Henning Kamp 
4553eac4884SPoul-Henning Kamp void
4565b81b6b3SRodney W. Grimes db_command_loop()
4575b81b6b3SRodney W. Grimes {
4585b81b6b3SRodney W. Grimes 	/*
4595b81b6b3SRodney W. Grimes 	 * Initialize 'prev' and 'next' to dot.
4605b81b6b3SRodney W. Grimes 	 */
4615b81b6b3SRodney W. Grimes 	db_prev = db_dot;
4625b81b6b3SRodney W. Grimes 	db_next = db_dot;
4635b81b6b3SRodney W. Grimes 
4645b81b6b3SRodney W. Grimes 	db_cmd_loop_done = 0;
4655b81b6b3SRodney W. Grimes 	while (!db_cmd_loop_done) {
4665b81b6b3SRodney W. Grimes 
4675b81b6b3SRodney W. Grimes 	    (void) setjmp(db_jmpbuf);
4685b81b6b3SRodney W. Grimes 	    if (db_print_position() != 0)
4695b81b6b3SRodney W. Grimes 		db_printf("\n");
4705b81b6b3SRodney W. Grimes 
4715b81b6b3SRodney W. Grimes 	    db_printf("db> ");
4725b81b6b3SRodney W. Grimes 	    (void) db_read_line();
4735b81b6b3SRodney W. Grimes 
4746337f4efSBruce Evans 	    db_command(&db_last_command, db_command_table,
475f41325dbSPeter Wemm 		       SET_BEGIN(db_cmd_set), SET_LIMIT(db_cmd_set));
4765b81b6b3SRodney W. Grimes 	}
4775b81b6b3SRodney W. Grimes }
4785b81b6b3SRodney W. Grimes 
4795b81b6b3SRodney W. Grimes void
4805b81b6b3SRodney W. Grimes db_error(s)
4815b81b6b3SRodney W. Grimes 	char *s;
4825b81b6b3SRodney W. Grimes {
4835b81b6b3SRodney W. Grimes 	if (s)
48458d9a059SKris Kennaway 	    db_printf("%s", s);
4855b81b6b3SRodney W. Grimes 	db_flush_lex();
4865b81b6b3SRodney W. Grimes 	longjmp(db_jmpbuf, 1);
4875b81b6b3SRodney W. Grimes }
4885b81b6b3SRodney W. Grimes 
4895b81b6b3SRodney W. Grimes 
4905b81b6b3SRodney W. Grimes /*
4915b81b6b3SRodney W. Grimes  * Call random function:
4925b81b6b3SRodney W. Grimes  * !expr(arg,arg,arg)
4935b81b6b3SRodney W. Grimes  */
494f73a856dSPoul-Henning Kamp static void
495976794d9SBruce Evans db_fncall(dummy1, dummy2, dummy3, dummy4)
496976794d9SBruce Evans 	db_expr_t	dummy1;
497976794d9SBruce Evans 	boolean_t	dummy2;
498976794d9SBruce Evans 	db_expr_t	dummy3;
499976794d9SBruce Evans 	char *		dummy4;
5005b81b6b3SRodney W. Grimes {
5015b81b6b3SRodney W. Grimes 	db_expr_t	fn_addr;
502058284fcSBruce Evans #define	MAXARGS		11	/* XXX only 10 are passed */
5035b81b6b3SRodney W. Grimes 	db_expr_t	args[MAXARGS];
5045b81b6b3SRodney W. Grimes 	int		nargs = 0;
5055b81b6b3SRodney W. Grimes 	db_expr_t	retval;
506058284fcSBruce Evans 	typedef db_expr_t fcn_10args_t __P((db_expr_t, db_expr_t, db_expr_t,
507058284fcSBruce Evans 					    db_expr_t, db_expr_t, db_expr_t,
508058284fcSBruce Evans 					    db_expr_t, db_expr_t, db_expr_t,
509058284fcSBruce Evans 					    db_expr_t));
510058284fcSBruce Evans 	fcn_10args_t	*func;
5115b81b6b3SRodney W. Grimes 	int		t;
5125b81b6b3SRodney W. Grimes 
5135b81b6b3SRodney W. Grimes 	if (!db_expression(&fn_addr)) {
5145b81b6b3SRodney W. Grimes 	    db_printf("Bad function\n");
5155b81b6b3SRodney W. Grimes 	    db_flush_lex();
5165b81b6b3SRodney W. Grimes 	    return;
5175b81b6b3SRodney W. Grimes 	}
518058284fcSBruce Evans 	func = (fcn_10args_t *)fn_addr;	/* XXX */
5195b81b6b3SRodney W. Grimes 
5205b81b6b3SRodney W. Grimes 	t = db_read_token();
5215b81b6b3SRodney W. Grimes 	if (t == tLPAREN) {
5225b81b6b3SRodney W. Grimes 	    if (db_expression(&args[0])) {
5235b81b6b3SRodney W. Grimes 		nargs++;
5245b81b6b3SRodney W. Grimes 		while ((t = db_read_token()) == tCOMMA) {
5255b81b6b3SRodney W. Grimes 		    if (nargs == MAXARGS) {
5265b81b6b3SRodney W. Grimes 			db_printf("Too many arguments\n");
5275b81b6b3SRodney W. Grimes 			db_flush_lex();
5285b81b6b3SRodney W. Grimes 			return;
5295b81b6b3SRodney W. Grimes 		    }
5305b81b6b3SRodney W. Grimes 		    if (!db_expression(&args[nargs])) {
5315b81b6b3SRodney W. Grimes 			db_printf("Argument missing\n");
5325b81b6b3SRodney W. Grimes 			db_flush_lex();
5335b81b6b3SRodney W. Grimes 			return;
5345b81b6b3SRodney W. Grimes 		    }
5355b81b6b3SRodney W. Grimes 		    nargs++;
5365b81b6b3SRodney W. Grimes 		}
5375b81b6b3SRodney W. Grimes 		db_unread_token(t);
5385b81b6b3SRodney W. Grimes 	    }
5395b81b6b3SRodney W. Grimes 	    if (db_read_token() != tRPAREN) {
5405b81b6b3SRodney W. Grimes 		db_printf("?\n");
5415b81b6b3SRodney W. Grimes 		db_flush_lex();
5425b81b6b3SRodney W. Grimes 		return;
5435b81b6b3SRodney W. Grimes 	    }
5445b81b6b3SRodney W. Grimes 	}
5455b81b6b3SRodney W. Grimes 	db_skip_to_eol();
5465b81b6b3SRodney W. Grimes 
5475b81b6b3SRodney W. Grimes 	while (nargs < MAXARGS) {
5485b81b6b3SRodney W. Grimes 	    args[nargs++] = 0;
5495b81b6b3SRodney W. Grimes 	}
5505b81b6b3SRodney W. Grimes 
5515b81b6b3SRodney W. Grimes 	retval = (*func)(args[0], args[1], args[2], args[3], args[4],
5525b81b6b3SRodney W. Grimes 			 args[5], args[6], args[7], args[8], args[9] );
5531c6989faSPeter Wemm 	db_printf("%#lr\n", (long)retval);
5545b81b6b3SRodney W. Grimes }
555ad146781SPaul Traina 
556ad146781SPaul Traina /* Enter GDB remote protocol debugger on the next trap. */
557ad146781SPaul Traina 
5583000820aSPoul-Henning Kamp dev_t	   gdbdev = NODEV;
5593000820aSPoul-Henning Kamp cn_getc_t *gdb_getc;
5603000820aSPoul-Henning Kamp cn_putc_t *gdb_putc;
5615c92a5b3SKirk McKusick 
562ad146781SPaul Traina static void
563ad146781SPaul Traina db_gdb (dummy1, dummy2, dummy3, dummy4)
564ad146781SPaul Traina 	db_expr_t	dummy1;
565ad146781SPaul Traina 	boolean_t	dummy2;
566ad146781SPaul Traina 	db_expr_t	dummy3;
567ad146781SPaul Traina 	char *		dummy4;
568ad146781SPaul Traina {
5695c92a5b3SKirk McKusick 
5703000820aSPoul-Henning Kamp 	if (gdbdev == NODEV) {
5715c92a5b3SKirk McKusick 		db_printf("No gdb port enabled. Set flag 0x80 on desired port\n");
5725c92a5b3SKirk McKusick 		db_printf("in your configuration file (currently sio only).\n");
5735c92a5b3SKirk McKusick 		return;
5745c92a5b3SKirk McKusick 	}
575ad146781SPaul Traina 	boothowto ^= RB_GDB;
576ad146781SPaul Traina 
577ad146781SPaul Traina 	db_printf("Next trap will enter %s\n",
578ad146781SPaul Traina 		   boothowto & RB_GDB ? "GDB remote protocol mode"
579ad146781SPaul Traina 				      : "DDB debugger");
580ad146781SPaul Traina }
5815370c3b6SPeter Wemm 
5825370c3b6SPeter Wemm static void
58319d2c78fSDima Dorfman db_kill(dummy1, dummy2, dummy3, dummy4)
58419d2c78fSDima Dorfman 	db_expr_t	dummy1;
58519d2c78fSDima Dorfman 	boolean_t	dummy2;
58619d2c78fSDima Dorfman 	db_expr_t	dummy3;
58719d2c78fSDima Dorfman 	char *		dummy4;
58819d2c78fSDima Dorfman {
58919d2c78fSDima Dorfman 	db_expr_t old_radix, pid, sig;
59019d2c78fSDima Dorfman 	struct proc *p;
59119d2c78fSDima Dorfman 
59219d2c78fSDima Dorfman #define DB_ERROR(f)	do { db_printf f; db_flush_lex(); goto out; } while (0)
59319d2c78fSDima Dorfman 
59419d2c78fSDima Dorfman 	/*
59519d2c78fSDima Dorfman 	 * PIDs and signal numbers are typically represented in base
59619d2c78fSDima Dorfman 	 * 10, so make that the default here.  It can, of course, be
59719d2c78fSDima Dorfman 	 * overridden by specifying a prefix.
59819d2c78fSDima Dorfman 	 */
59919d2c78fSDima Dorfman 	old_radix = db_radix;
60019d2c78fSDima Dorfman 	db_radix = 10;
60119d2c78fSDima Dorfman 	/* Retrieve arguments. */
60219d2c78fSDima Dorfman 	if (!db_expression(&sig))
60319d2c78fSDima Dorfman 		DB_ERROR(("Missing signal number\n"));
60419d2c78fSDima Dorfman 	if (!db_expression(&pid))
60519d2c78fSDima Dorfman 		DB_ERROR(("Missing process ID\n"));
60619d2c78fSDima Dorfman 	db_skip_to_eol();
60719d2c78fSDima Dorfman 	if (sig < 0 || sig > _SIG_MAXSIG)
60819d2c78fSDima Dorfman 		DB_ERROR(("Signal number out of range\n"));
60919d2c78fSDima Dorfman 
61019d2c78fSDima Dorfman 	/*
61119d2c78fSDima Dorfman 	 * Find the process in question.  allproc_lock is not needed
61219d2c78fSDima Dorfman 	 * since we're in DDB.
61319d2c78fSDima Dorfman 	 */
61419d2c78fSDima Dorfman 	/* sx_slock(&allproc_lock); */
61519d2c78fSDima Dorfman 	LIST_FOREACH(p, &allproc, p_list)
61619d2c78fSDima Dorfman 	    if (p->p_pid == pid)
61719d2c78fSDima Dorfman 		    break;
61819d2c78fSDima Dorfman 	/* sx_sunlock(&allproc_lock); */
61919d2c78fSDima Dorfman 	if (p == NULL)
62019d2c78fSDima Dorfman 		DB_ERROR(("Can't find process with pid %d\n", pid));
62119d2c78fSDima Dorfman 
62219d2c78fSDima Dorfman 	/* If it's already locked, bail; otherwise, do the deed. */
62319d2c78fSDima Dorfman 	if (PROC_TRYLOCK(p) == 0)
62419d2c78fSDima Dorfman 		DB_ERROR(("Can't lock process with pid %d\n", pid));
62519d2c78fSDima Dorfman 	else {
62619d2c78fSDima Dorfman 		psignal(p, sig);
62719d2c78fSDima Dorfman 		PROC_UNLOCK(p);
62819d2c78fSDima Dorfman 	}
62919d2c78fSDima Dorfman 
63019d2c78fSDima Dorfman out:
63119d2c78fSDima Dorfman 	db_radix = old_radix;
63219d2c78fSDima Dorfman #undef DB_ERROR
63319d2c78fSDima Dorfman }
63419d2c78fSDima Dorfman 
63519d2c78fSDima Dorfman static void
6365370c3b6SPeter Wemm db_reset(dummy1, dummy2, dummy3, dummy4)
6375370c3b6SPeter Wemm 	db_expr_t	dummy1;
6385370c3b6SPeter Wemm 	boolean_t	dummy2;
6395370c3b6SPeter Wemm 	db_expr_t	dummy3;
6405370c3b6SPeter Wemm 	char *		dummy4;
6415370c3b6SPeter Wemm {
6425370c3b6SPeter Wemm 
6435370c3b6SPeter Wemm 	cpu_reset();
6445370c3b6SPeter Wemm }
645