1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
/* $OpenBSD: pmdb.c,v 1.16 2003/05/15 00:11:03 jfb Exp $ */
/*
* Copyright (c) 2002 Artur Grabowski <art@openbsd.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#include <sys/ptrace.h>
#include <sys/wait.h>
#include <sys/endian.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <err.h>
#include <errno.h>
#include <string.h>
#include "pmdb.h"
#include "symbol.h"
#include "clit.h"
#include "break.h"
#include "core.h"
static int cmd_show_registers(int, char **, void *);
static int cmd_show_backtrace(int, char **, void *);
static int cmd_examine(int, char **, void *);
static int cmd_quit(int, char **, void *);
struct clit cmds[] = {
/* debugging info commands. */
{ "regs", "show registers", 0, 0, cmd_show_registers, (void *)-1 },
{ "trace", "show backtrace", 0, 0, cmd_show_backtrace, (void *)-1 },
{ "x", "examine memory", 1, 16, cmd_examine, (void *)-1 },
/* Process handling commands. */
{ "run", "run process", 0, 0, cmd_process_run, (void *)-1 },
{ "continue", "continue process", 0, 0, cmd_process_cont, (void *)-1 },
{ "kill", "kill process", 0, 0, cmd_process_kill, (void *)-1 },
{ "setenv", "set env variables", 2, 2, cmd_process_setenv, (void *)-1 },
/* signal handling commands. */
{ "signal", "ignore signal", 2, 2, cmd_signal_ignore, (void *)-1 },
{ "sigstate", "show signal state", 0, 0, cmd_signal_show, (void *)-1 },
/* breakpoints */
{ "break", "set breakpoint", 1, 1, cmd_bkpt_add, (void *)-1 },
{ "step", "single step one insn", 0, 0, cmd_sstep, (void *)-1 },
/* symbols */
{ "sym_load", "load symbol table", 2, 2, cmd_sym_load, (void *)-1 },
/* misc commands. */
{ "help", "print help", 0, 1, cmd_help, NULL },
{ "quit", "quit", 0, 0, cmd_quit, (void *)-1 },
{ "exit", "quit", 0, 0, cmd_quit, (void *)-1 },
};
#define NCMDS sizeof(cmds)/sizeof(cmds[0])
void
usage()
{
extern char *__progname;
fprintf(stderr, "Usage: %s [-c core] [-p pid] <program> args\n",
__progname);
exit(1);
}
int
main(int argc, char **argv)
{
struct pstate ps;
int i, c;
int status;
void *cm;
char *pmenv, *core, *perr;
int level;
pid_t pid;
core = NULL;
pid = 0;
while ((c = getopt(argc, argv, "c:p:")) != -1) {
switch(c) {
case 'c':
core = optarg;
break;
case 'p':
pid = (pid_t) strtol(optarg, &perr, 10);
if (*perr != '\0')
errx(1, "invalid PID");
break;
case '?':
default:
usage();
/* NOTREACHED */
}
}
argc -= optind;
argv += optind;
if (argc == 0)
usage();
if ((pmenv = getenv("IN_PMDB")) != NULL) {
level = atoi(pmenv);
level++;
} else
level = 0;
if (level > 0)
asprintf(&prompt_add, "(%d)", level);
asprintf(&pmenv, "%d", level);
setenv("IN_PMDB", pmenv, 1);
if (pmenv)
free(pmenv);
ps.ps_pid = pid;
ps.ps_state = NONE;
ps.ps_argc = argc;
ps.ps_argv = argv;
ps.ps_flags = 0;
ps.ps_signum = 0;
ps.ps_npc = 1;
TAILQ_INIT(&ps.ps_bkpts);
TAILQ_INIT(&ps.ps_sstep_cbs);
signal(SIGINT, SIG_IGN);
for (i = 0; i < NCMDS; i++)
if (cmds[i].arg == (void *)-1)
cmds[i].arg = &ps;
md_def_init();
init_sigstate(&ps);
if ((core != NULL) && (read_core(core, &ps) < 0))
warnx("failed to load core file");
if (process_load(&ps) < 0)
errx(1, "failed to load process");
cm = cmdinit(cmds, NCMDS);
while (ps.ps_state != TERMINATED) {
int signum;
int stopped;
int cont;
if (ps.ps_state == STOPPED) {
sym_update(&ps);
}
if (ps.ps_state != RUNNING && cmdloop(cm) == 0) {
cmd_quit(0, NULL, &ps);
}
if (ps.ps_state == TERMINATED)
break;
if (wait(&status) == 0)
err(1, "wait");
if (WIFEXITED(status)) {
if ((ps.ps_flags & PSF_KILL) == 0) {
ps.ps_state = NONE;
} else {
ps.ps_state = TERMINATED;
}
fprintf(stderr, "process exited with status %d\n",
WEXITSTATUS(status));
continue;
}
if (WIFSIGNALED(status)) {
signum = WTERMSIG(status);
stopped = 0;
} else {
signum = WSTOPSIG(status);
stopped = 1;
}
cont = 0;
if (stopped)
cont = bkpt_check(&ps);
process_signal(&ps, signum, stopped, cont);
}
cmdend(cm);
sym_destroy(&ps);
return (0);
}
static int
cmd_show_registers(int argc, char **argv, void *arg)
{
struct pstate *ps = arg;
char buf[256];
int i;
reg *rg;
if (ps->ps_state != STOPPED) {
if (ps->ps_flags & PSF_CORE) {
/* dump registers from core */
core_printregs(ps);
return (0);
}
fprintf(stderr, "process not stopped\n");
return (0);
}
rg = alloca(sizeof(*rg) * md_def.nregs);
if (md_getregs(ps, rg))
err(1, "can't get registers");
for (i = 0; i < md_def.nregs; i++)
printf("%s:\t0x%.*lx\t%s\n", md_def.md_reg_names[i],
(int)(sizeof(reg) * 2), (long)rg[i],
sym_print(ps, rg[i], buf, sizeof(buf)));
return (0);
}
static int
cmd_show_backtrace(int argc, char **argv, void *arg)
{
struct pstate *ps = arg;
int i;
if (ps->ps_state != STOPPED && !(ps->ps_flags & PSF_CORE)) {
fprintf(stderr, "process not stopped\n");
return (0);
}
/* no more than 100 frames */
for (i = 0; i < 100; i++) {
struct md_frame mfr;
char namebuf[1024], *name;
reg offs;
int j;
mfr.nargs = -1;
if (md_getframe(ps, i, &mfr))
break;
name = sym_name_and_offset(ps, mfr.pc, namebuf,
sizeof(namebuf), &offs);
if (name == NULL) {
snprintf(namebuf, sizeof(namebuf), "0x%lx", mfr.pc);
name = namebuf;
offs = 0;
}
printf("%s(", name);
for (j = 0; j < mfr.nargs; j++) {
printf("0x%lx", mfr.args[j]);
if (j < mfr.nargs - 1)
printf(", ");
}
if (offs == 0) {
printf(")\n");
} else {
printf(")+0x%lx\n", offs);
}
}
return (0);
}
static int
cmd_quit(int argc, char **argv, void *arg)
{
struct pstate *ps = arg;
if ((ps->ps_flags & PSF_ATCH)) {
if ((ps->ps_flags & PSF_ATCH) &&
ptrace(PT_DETACH, ps->ps_pid, NULL, 0) < 0)
err(1, "ptrace(PT_DETACH)");
} else {
ps->ps_flags |= PSF_KILL;
if (process_kill(ps))
return (1);
}
ps->ps_state = TERMINATED;
return (1);
}
static int
cmd_examine(int argc, char **argv, void *arg)
{
struct pstate *ps = arg;
char buf[256];
reg addr, val;
int i;
for (i = 1; argv[i]; i++) {
addr = strtoul(argv[i], NULL, 0);
if (!addr) { /* assume it's a symbol */
if (sym_lookup(ps, argv[i], &addr)) {
warn( "Can't find: %s", argv[i]);
return (0);
}
}
if (process_read(ps, addr, &val, sizeof(val))) {
warn("Can't read process contents at 0x%lx", addr);
return (0);
}
printf("%s:\t%s\n", argv[i],
sym_print(ps, val, buf, sizeof(buf)));
}
return (0);
}
/*
* Perform command completion.
* Pretty simple. if there are spaces in "buf", the last string is a symbol
* otherwise it's a command.
*/
int
cmd_complt(char *buf, size_t buflen)
{
struct clit *match;
char *start;
int command;
int i, j, len;
int onlymatch;
command = (strchr(buf, ' ') == NULL);
if (!command) {
/* XXX - can't handle symbols yet. */
return (-1);
}
start = buf;
len = strlen(buf);
match = NULL;
for (i = 0; i < sizeof(cmds) / sizeof(cmds[i]); i++) {
if (strncmp(start, cmds[i].cmd, len) == 0) {
struct clit *cmdp;
cmdp = &cmds[i];
if (match == NULL) {
onlymatch = 1;
match = cmdp;
strlcpy(buf, match->cmd, buflen);
continue;
}
onlymatch = 0;
for (j = len; j < buflen; j++) {
if (buf[j] != cmdp->cmd[j]) {
buf[j] = '\0';
break;
}
if (cmdp->cmd[j] == '\0')
break;
}
}
}
/*
* Be nice. If there could be arguments for this command and it's
* the only match append a space.
*/
if (match && onlymatch /*&& match->maxargc > 0*/)
strlcat(buf, " ", buflen);
return (match && onlymatch) ? 0 : -1;
}
/*
* The "standard" wrapper
*/
void *
emalloc(size_t sz)
{
void *ret;
if ((ret = malloc(sz)) == NULL)
err(1, "malloc");
return (ret);
}
|