db_script.c revision 174914
1/*-
2 * Copyright (c) 2007 Robert N. M. Watson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/ddb/db_script.c 174914 2007-12-26 09:33:19Z rwatson $
27 */
28
29/*-
30 * Simple DDB scripting mechanism.  Each script consists of a named list of
31 * DDB commands to execute sequentially.  A more sophisticated scripting
32 * language might be desirable, but would be significantly more complex to
33 * implement.  A more interesting syntax might allow general use of variables
34 * and extracting of useful values, such as a thread's process identifier,
35 * for passing into further DDB commands.  Certain scripts are run
36 * automatically at kdb_enter(), if defined, based on how the debugger is
37 * entered, allowing scripted responses to panics, break signals, etc.
38 *
39 * Scripts may be managed from within DDB using the script, scripts, and
40 * unscript commands.  They may also be managed from userspace using ddb(8),
41 * which operates using a set of sysctls.
42 *
43 * TODO:
44 * - Allow scripts to be defined using tunables so that they can be defined
45 *   before boot and be present in single-user mode without boot scripts
46 *   running.
47 * - Memory allocation is not possible from within DDB, so we use a set of
48 *   statically allocated buffers to hold defined scripts.  However, when
49 *   scripts are being defined from userspace via sysctl, we could in fact be
50 *   using malloc(9) and therefore not impose a static limit, giving greater
51 *   flexibility and avoiding hard-defined buffer limits.
52 * - When scripts run automatically on entrance to DDB, placing "continue" at
53 *   the end still results in being in the debugger, as we unconditionally
54 *   run db_command_loop() after the script.  There should be a way to avoid
55 *   this.
56 */
57
58#include <sys/cdefs.h>
59__FBSDID("$FreeBSD: head/sys/ddb/db_script.c 174914 2007-12-26 09:33:19Z rwatson $");
60
61#include <sys/param.h>
62#include <sys/kdb.h>
63#include <sys/kernel.h>
64#include <sys/libkern.h>
65#include <sys/lock.h>
66#include <sys/malloc.h>
67#include <sys/mutex.h>
68#include <sys/sbuf.h>
69#include <sys/sysctl.h>
70#include <sys/systm.h>
71
72#include <ddb/ddb.h>
73#include <ddb/db_command.h>
74#include <ddb/db_lex.h>
75
76#include <machine/setjmp.h>
77
78/*
79 * struct ddb_script describes an individual script.
80 */
81struct ddb_script {
82	char	ds_scriptname[DB_MAXSCRIPTNAME];
83	char	ds_script[DB_MAXSCRIPTLEN];
84};
85
86/*
87 * Global list of scripts -- defined scripts have non-empty name fields.
88 */
89static struct ddb_script	db_script_table[DB_MAXSCRIPTS];
90
91/*
92 * While executing a script, we parse it using strsep(), so require a
93 * temporary buffer that may be used destructively.  Since we support weak
94 * recursion of scripts (one may reference another), we need one buffer for
95 * each concurrently executing script.
96 */
97static struct db_recursion_data {
98	char	drd_buffer[DB_MAXSCRIPTLEN];
99} db_recursion_data[DB_MAXSCRIPTRECURSION];
100static int	db_recursion = -1;
101
102/*
103 * We use a separate static buffer for script validation so that it is safe
104 * to validate scripts from within a script.  This is used only in
105 * db_script_valid(), which should never be called reentrantly.
106 */
107static char	db_static_buffer[DB_MAXSCRIPTLEN];
108
109/*
110 * Synchronization is not required from within the debugger, as it is
111 * singe-threaded (although reentrance must be carefully considered).
112 * However, it is required when interacting with scripts from user space
113 * processes.  Sysctl procedures acquire db_script_mtx before accessing the
114 * global script data structures.
115 */
116static struct mtx 	db_script_mtx;
117MTX_SYSINIT(db_script_mtx, &db_script_mtx, "db_script_mtx", MTX_DEF);
118
119/*
120 * Some script names have special meaning, such as those executed
121 * automatically when KDB is entered.
122 */
123#define	DB_SCRIPT_KDBENTER_PREFIX	"kdb.enter"	/* KDB has entered. */
124#define	DB_SCRIPT_KDBENTER_DEFAULT	"kdb.enter.default"
125
126/*
127 * Find the existing script slot for a named script, if any.
128 */
129static struct ddb_script *
130db_script_lookup(const char *scriptname)
131{
132	int i;
133
134	for (i = 0; i < DB_MAXSCRIPTS; i++) {
135		if (strcmp(db_script_table[i].ds_scriptname, scriptname) ==
136		    0)
137			return (&db_script_table[i]);
138	}
139	return (NULL);
140}
141
142/*
143 * Find a new slot for a script, if available.  Does not mark as allocated in
144 * any way--this must be done by the caller.
145 */
146static struct ddb_script *
147db_script_new(void)
148{
149	int i;
150
151	for (i = 0; i < DB_MAXSCRIPTS; i++) {
152		if (strlen(db_script_table[i].ds_scriptname) == 0)
153			return (&db_script_table[i]);
154	}
155	return (NULL);
156}
157
158/*
159 * Perform very rudimentary validation of a proposed script.  It would be
160 * easy to imagine something more comprehensive.  The script string is
161 * validated in a static buffer.
162 */
163static int
164db_script_valid(const char *scriptname, const char *script)
165{
166	char *buffer, *command;
167
168	if (strlen(scriptname) == 0)
169		return (EINVAL);
170	if (strlen(scriptname) >= DB_MAXSCRIPTNAME)
171		return (EINVAL);
172	if (strlen(script) >= DB_MAXSCRIPTLEN)
173		return (EINVAL);
174	buffer = db_static_buffer;
175	strcpy(buffer, script);
176	while ((command = strsep(&buffer, ";")) != NULL) {
177		if (strlen(command) >= DB_MAXLINE)
178			return (EINVAL);
179	}
180	return (0);
181}
182
183/*
184 * Modify an existing script or add a new script with the specified script
185 * name and contents.  If there are no script slots available, an error will
186 * be returned.
187 */
188static int
189db_script_set(const char *scriptname, const char *script)
190{
191	struct ddb_script *dsp;
192	int error;
193
194	error = db_script_valid(scriptname, script);
195	if (error)
196		return (error);
197	dsp = db_script_lookup(scriptname);
198	if (dsp == NULL) {
199		dsp = db_script_new();
200		if (dsp == NULL)
201			return (ENOSPC);
202		strlcpy(dsp->ds_scriptname, scriptname,
203		    sizeof(dsp->ds_scriptname));
204	}
205	strlcpy(dsp->ds_script, script, sizeof(dsp->ds_script));
206	return (0);
207}
208
209/*
210 * Delete an existing script by name, if found.
211 */
212static int
213db_script_unset(const char *scriptname)
214{
215	struct ddb_script *dsp;
216
217	dsp = db_script_lookup(scriptname);
218	if (dsp == NULL)
219		return (ENOENT);
220	strcpy(dsp->ds_scriptname, "");
221	strcpy(dsp->ds_script, "");
222	return (0);
223}
224
225/*
226 * Trim leading/trailing white space in a command so that we don't pass
227 * carriage returns, etc, into DDB command parser.
228 */
229static int
230db_command_trimmable(char ch)
231{
232
233	switch (ch) {
234	case ' ':
235	case '\t':
236	case '\n':
237	case '\r':
238		return (1);
239
240	default:
241		return (0);
242	}
243}
244
245static void
246db_command_trim(char **commandp)
247{
248	char *command;
249
250	command = *commandp;
251	while (db_command_trimmable(*command))
252		command++;
253	while ((strlen(command) > 0) &&
254	    db_command_trimmable(command[strlen(command) - 1]))
255		command[strlen(command) - 1] = 0;
256	*commandp = command;
257}
258
259/*
260 * Execute a script, breaking it up into individual commands and passing them
261 * sequentially into DDB's input processing.  Use the KDB jump buffer to
262 * restore control to the main script loop if things get too wonky when
263 * processing a command -- i.e., traps, etc.  Also, make sure we don't exceed
264 * practical limits on recursion.
265 *
266 * XXXRW: If any individual command is too long, it will be truncated when
267 * injected into the input at a lower layer.  We should validate the script
268 * before configuring it to avoid this scenario.
269 */
270static int
271db_script_exec(const char *scriptname, int warnifnotfound)
272{
273	struct db_recursion_data *drd;
274	struct ddb_script *dsp;
275	char *buffer, *command;
276	void *prev_jb;
277	jmp_buf jb;
278
279	dsp = db_script_lookup(scriptname);
280	if (dsp == NULL) {
281		if (warnifnotfound)
282			db_printf("script '%s' not found\n", scriptname);
283		return (ENOENT);
284	}
285
286	if (db_recursion >= DB_MAXSCRIPTRECURSION) {
287		db_printf("Script stack too deep\n");
288		return (E2BIG);
289	}
290	db_recursion++;
291	drd = &db_recursion_data[db_recursion];
292
293	/*
294	 * Parse script in temporary buffer, since strsep() is destructive.
295	 */
296	buffer = drd->drd_buffer;
297	strcpy(buffer, dsp->ds_script);
298	while ((command = strsep(&buffer, ";")) != NULL) {
299		db_printf("db:%d:%s> %s\n", db_recursion, scriptname,
300		    command);
301		db_command_trim(&command);
302		prev_jb = kdb_jmpbuf(jb);
303		if (setjmp(jb) == 0)
304			db_command_script(command);
305		else
306			db_printf("Script command '%s' returned error\n",
307			    command);
308		kdb_jmpbuf(prev_jb);
309	}
310	db_recursion--;
311	return (0);
312}
313
314/*
315 * Wrapper for exec path that is called on KDB enter.  Map reason for KDB
316 * enter to a script name, and don't whine if the script doesn't exist.  If
317 * there is no matching script, try the catch-all script.
318 */
319void
320db_script_kdbenter(const char *eventname)
321{
322	char scriptname[DB_MAXSCRIPTNAME];
323
324	snprintf(scriptname, sizeof(scriptname), "%s.%s",
325	    DB_SCRIPT_KDBENTER_PREFIX, eventname);
326	if (db_script_exec(scriptname, 0) == ENOENT)
327		(void)db_script_exec(DB_SCRIPT_KDBENTER_DEFAULT, 0);
328}
329
330/*-
331 * DDB commands for scripting, as reached via the DDB user interface:
332 *
333 * scripts				- lists scripts
334 * run <scriptname>			- run a script
335 * script <scriptname>			- prints script
336 * script <scriptname> <script>		- set a script
337 * unscript <scriptname>		- remove a script
338 */
339
340/*
341 * List scripts and their contents.
342 */
343void
344db_scripts_cmd(db_expr_t addr, boolean_t have_addr, db_expr_t count,
345    char *modif)
346{
347	int i;
348
349	for (i = 0; i < DB_MAXSCRIPTS; i++) {
350		if (strlen(db_script_table[i].ds_scriptname) != 0) {
351			db_printf("%s=%s\n",
352			    db_script_table[i].ds_scriptname,
353			    db_script_table[i].ds_script);
354		}
355	}
356}
357
358/*
359 * Execute a script.
360 */
361void
362db_run_cmd(db_expr_t addr, boolean_t have_addr, db_expr_t count, char *modif)
363{
364	int t;
365
366	/*
367	 * Right now, we accept exactly one argument.  In the future, we
368	 * might want to accept flags and arguments to the script itself.
369	 */
370	t = db_read_token();
371	if (t != tIDENT)
372		db_error("?\n");
373
374	if (db_read_token() != tEOL)
375		db_error("?\n");
376
377	db_script_exec(db_tok_string, 1);
378}
379
380/*
381 * Print or set a named script, with the set portion broken out into its own
382 * function.  We must directly access the remainder of the DDB line input as
383 * we do not wish to use db_lex's token processing.
384 */
385void
386db_script_cmd(db_expr_t addr, boolean_t have_addr, db_expr_t count,
387    char *modif)
388{
389	char *buf, scriptname[DB_MAXSCRIPTNAME];
390	struct ddb_script *dsp;
391	int error, t;
392
393	t = db_read_token();
394	if (t != tIDENT) {
395		db_printf("usage: script scriptname=script\n");
396		db_skip_to_eol();
397		return;
398	}
399
400	if (strlcpy(scriptname, db_tok_string, sizeof(scriptname)) >=
401	    sizeof(scriptname)) {
402		db_printf("scriptname too long\n");
403		db_skip_to_eol();
404		return;
405	}
406
407	t = db_read_token();
408	if (t == tEOL) {
409		dsp = db_script_lookup(scriptname);
410		if (dsp == NULL) {
411			db_printf("script '%s' not found\n", scriptname);
412			db_skip_to_eol();
413			return;
414		}
415		db_printf("%s=%s\n", scriptname, dsp->ds_script);
416	} else if (t == tEQ) {
417		buf = db_get_line();
418		if (buf[strlen(buf)-1] == '\n')
419			buf[strlen(buf)-1] = '\0';
420		error = db_script_set(scriptname, buf);
421		if (error != 0)
422			db_printf("Error: %d\n", error);
423	} else
424		db_printf("?\n");
425	db_skip_to_eol();
426}
427
428/*
429 * Remove a named script.
430 */
431void
432db_unscript_cmd(db_expr_t addr, boolean_t have_addr, db_expr_t count,
433    char *modif)
434{
435	int error, t;
436
437	t = db_read_token();
438	if (t != tIDENT) {
439		db_printf("?\n");
440		db_skip_to_eol();
441		return;
442	}
443
444	error = db_script_unset(db_tok_string);
445	if (error == ENOENT) {
446		db_printf("script '%s' not found\n", db_tok_string);
447		db_skip_to_eol();
448		return;
449	}
450	db_skip_to_eol();
451}
452
453/*
454 * Sysctls for managing DDB scripting:
455 *
456 * debug.ddb.scripting.script      - Define a new script
457 * debug.ddb.scripting.scripts     - List of names *and* scripts
458 * debug.ddb.scripting.unscript    - Remove an existing script
459 *
460 * Since we don't want to try to manage arbitrary extensions to the sysctl
461 * name space from the debugger, the script/unscript sysctls are a bit more
462 * like RPCs and a bit less like normal get/set requests.  The ddb(8) command
463 * line tool wraps them to make things a bit more user-friendly.
464 */
465static SYSCTL_NODE(_debug_ddb, OID_AUTO, scripting, CTLFLAG_RW, 0,
466    "DDB script settings");
467
468static int
469sysctl_debug_ddb_scripting_scripts(SYSCTL_HANDLER_ARGS)
470{
471	struct sbuf sb;
472	int error, i, len;
473	char *buffer;
474
475	/*
476	 * Make space to include a maximum-length name, = symbol,
477	 * maximum-length script, and carriage return for every script that
478	 * may be defined.
479	 */
480	len = DB_MAXSCRIPTS * (DB_MAXSCRIPTNAME + 1 + DB_MAXSCRIPTLEN + 1);
481	buffer = malloc(len, M_TEMP, M_WAITOK);
482	(void)sbuf_new(&sb, buffer, len, SBUF_FIXEDLEN);
483	mtx_lock(&db_script_mtx);
484	for (i = 0; i < DB_MAXSCRIPTS; i++) {
485		if (strlen(db_script_table[i].ds_scriptname) == 0)
486			continue;
487		(void)sbuf_printf(&sb, "%s=%s\n",
488		    db_script_table[i].ds_scriptname,
489		    db_script_table[i].ds_script);
490	}
491	mtx_unlock(&db_script_mtx);
492	sbuf_finish(&sb);
493	error = SYSCTL_OUT(req, sbuf_data(&sb), sbuf_len(&sb) + 1);
494	sbuf_delete(&sb);
495	free(buffer, M_TEMP);
496	return (error);
497}
498SYSCTL_PROC(_debug_ddb_scripting, OID_AUTO, scripts, CTLTYPE_STRING |
499    CTLFLAG_RD, 0, 0, sysctl_debug_ddb_scripting_scripts, "A",
500    "List of defined scripts");
501
502static int
503sysctl_debug_ddb_scripting_script(SYSCTL_HANDLER_ARGS)
504{
505	char *buffer, *script, *scriptname;
506	int error, len;
507
508	/*
509	 * Maximum length for an input string is DB_MAXSCRIPTNAME + '='
510	 * symbol + DB_MAXSCRIPT.
511	 */
512	len = DB_MAXSCRIPTNAME + DB_MAXSCRIPTLEN + 1;
513	buffer = malloc(len, M_TEMP, M_WAITOK | M_ZERO);
514	error = sysctl_handle_string(oidp, buffer, len, req);
515	if (error)
516		goto out;
517
518	/*
519	 * Argument will be in form scriptname=script, so split into the
520	 * scriptname and script.
521	 */
522	script = buffer;
523	scriptname = strsep(&script, "=");
524	if (script == NULL) {
525		error = EINVAL;
526		goto out;
527	}
528	mtx_lock(&db_script_mtx);
529	error = db_script_set(scriptname, script);
530	mtx_unlock(&db_script_mtx);
531out:
532	free(buffer, M_TEMP);
533	return (error);
534}
535SYSCTL_PROC(_debug_ddb_scripting, OID_AUTO, script, CTLTYPE_STRING |
536    CTLFLAG_RW, 0, 0, sysctl_debug_ddb_scripting_script, "A",
537    "Set a script");
538
539/*
540 * debug.ddb.scripting.unscript has somewhat unusual sysctl semantics -- set
541 * the name of the script that you want to delete.
542 */
543static int
544sysctl_debug_ddb_scripting_unscript(SYSCTL_HANDLER_ARGS)
545{
546	char name[DB_MAXSCRIPTNAME];
547	int error;
548
549	bzero(name, sizeof(name));
550	error = sysctl_handle_string(oidp, name, sizeof(name), req);
551	if (error)
552		return (error);
553	if (req->newptr == NULL)
554		return (0);
555	mtx_lock(&db_script_mtx);
556	error = db_script_unset(name);
557	mtx_unlock(&db_script_mtx);
558	if (error == ENOENT)
559		return (EINVAL);	/* Don't confuse sysctl consumers. */
560	return (0);
561}
562SYSCTL_PROC(_debug_ddb_scripting, OID_AUTO, unscript, CTLTYPE_STRING |
563    CTLFLAG_RW, 0, 0, sysctl_debug_ddb_scripting_unscript, "A",
564    "Unset a script");
565