Suppress the error message for command -v for files with a slash.
[dragonfly.git] / sys / platform / vkernel / i386 / db_trace.c
1 /*
2  * Mach Operating System
3  * Copyright (c) 1991,1990 Carnegie Mellon University
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify and distribute this software and its
7  * documentation is hereby granted, provided that both the copyright
8  * notice and this permission notice appear in all copies of the
9  * software, derivative works or modified versions, and any portions
10  * thereof, and that both notices appear in supporting documentation.
11  *
12  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
15  *
16  * Carnegie Mellon requests users of this software to return to
17  *
18  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
19  *  School of Computer Science
20  *  Carnegie Mellon University
21  *  Pittsburgh PA 15213-3890
22  *
23  * any improvements or extensions that they make and grant Carnegie the
24  * rights to redistribute these changes.
25  *
26  * $FreeBSD: src/sys/i386/i386/db_trace.c,v 1.35.2.3 2002/02/21 22:31:25 silby Exp $
27  * $DragonFly: src/sys/platform/vkernel/i386/db_trace.c,v 1.5 2007/01/12 06:07:29 dillon Exp $
28  */
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/linker_set.h>
33 #include <sys/lock.h>
34 #include <sys/proc.h>
35 #include <sys/reg.h>
36
37 #include <machine/cpu.h>
38 #include <machine/md_var.h>
39
40 #include <vm/vm.h>
41 #include <vm/vm_param.h>
42 #include <vm/pmap.h>
43 #include <vm/vm_map.h>
44 #include <ddb/ddb.h>
45
46 #include <sys/user.h>
47
48 #include <ddb/db_access.h>
49 #include <ddb/db_sym.h>
50 #include <ddb/db_variables.h>
51
52 db_varfcn_t db_dr0;
53 db_varfcn_t db_dr1;
54 db_varfcn_t db_dr2;
55 db_varfcn_t db_dr3;
56 db_varfcn_t db_dr4;
57 db_varfcn_t db_dr5;
58 db_varfcn_t db_dr6;
59 db_varfcn_t db_dr7;
60
61 /*
62  * Machine register set.
63  */
64 struct db_variable db_regs[] = {
65         { "cs",         &ddb_regs.tf_cs,     FCN_NULL },
66         { "ds",         &ddb_regs.tf_ds,     FCN_NULL },
67         { "es",         &ddb_regs.tf_es,     FCN_NULL },
68         { "fs",         &ddb_regs.tf_fs,     FCN_NULL },
69         { "gs",         &ddb_regs.tf_gs,     FCN_NULL },
70         { "ss",         &ddb_regs.tf_ss,     FCN_NULL },
71         { "eax",        &ddb_regs.tf_eax,    FCN_NULL },
72         { "ecx",        &ddb_regs.tf_ecx,    FCN_NULL },
73         { "edx",        &ddb_regs.tf_edx,    FCN_NULL },
74         { "ebx",        &ddb_regs.tf_ebx,    FCN_NULL },
75         { "esp",        &ddb_regs.tf_esp,    FCN_NULL },
76         { "ebp",        &ddb_regs.tf_ebp,    FCN_NULL },
77         { "esi",        &ddb_regs.tf_esi,    FCN_NULL },
78         { "edi",        &ddb_regs.tf_edi,    FCN_NULL },
79         { "eip",        &ddb_regs.tf_eip,    FCN_NULL },
80         { "efl",        &ddb_regs.tf_eflags, FCN_NULL },
81         { "dr0",        NULL,                db_dr0 },
82         { "dr1",        NULL,                db_dr1 },
83         { "dr2",        NULL,                db_dr2 },
84         { "dr3",        NULL,                db_dr3 },
85         { "dr4",        NULL,                db_dr4 },
86         { "dr5",        NULL,                db_dr5 },
87         { "dr6",        NULL,                db_dr6 },
88         { "dr7",        NULL,                db_dr7 },
89 };
90 struct db_variable *db_eregs = db_regs + sizeof(db_regs)/sizeof(db_regs[0]);
91
92 /*
93  * Stack trace.
94  */
95 #define INKERNEL(va)    (((vm_offset_t)(va)) >= USRSTACK)
96
97 struct i386_frame {
98         struct i386_frame       *f_frame;
99         int                     f_retaddr;
100         int                     f_arg0;
101 };
102
103 #define NORMAL          0
104 #define TRAP            1
105 #define INTERRUPT       2
106 #define SYSCALL         3
107
108 static void     db_nextframe(struct i386_frame **, db_addr_t *);
109 static int      db_numargs(struct i386_frame *);
110 static void     db_print_stack_entry(const char *, int, char **, int *, db_addr_t);
111
112
113 static char     *watchtype_str(int type);
114 static int      ki386_set_watch(int watchnum, unsigned int watchaddr, 
115                                int size, int access, struct dbreg * d);
116 static int      ki386_clr_watch(int watchnum, struct dbreg * d);
117 int             db_md_set_watchpoint(db_expr_t addr, db_expr_t size);
118 int             db_md_clr_watchpoint(db_expr_t addr, db_expr_t size);
119 void            db_md_list_watchpoints(void);
120
121
122 /*
123  * Figure out how many arguments were passed into the frame at "fp".
124  */
125 static int
126 db_numargs(struct i386_frame *fp)
127 {
128         int     args;
129 #if 0
130         int     *argp;
131         int     inst;
132
133         argp = (int *)db_get_value((int)&fp->f_retaddr, 4, FALSE);
134         /*
135          * XXX etext is wrong for LKMs.  We should attempt to interpret
136          * the instruction at the return address in all cases.  This
137          * may require better fault handling.
138          */
139         if (argp < (int *)btext || argp >= (int *)etext) {
140                 args = 5;
141         } else {
142                 inst = db_get_value((int)argp, 4, FALSE);
143                 if ((inst & 0xff) == 0x59)      /* popl %ecx */
144                         args = 1;
145                 else if ((inst & 0xffff) == 0xc483)     /* addl $Ibs, %esp */
146                         args = ((inst >> 16) & 0xff) / 4;
147                 else
148                         args = 5;
149         }
150 #endif
151         args = 5;
152         return(args);
153 }
154
155 static void
156 db_print_stack_entry(const char *name, int narg, char **argnp, int *argp,
157                      db_addr_t callpc)
158 {
159         db_printf("%s(", name);
160         while (narg) {
161                 if (argnp)
162                         db_printf("%s=", *argnp++);
163                 db_printf("%r", db_get_value((int)argp, 4, FALSE));
164                 argp++;
165                 if (--narg != 0)
166                         db_printf(",");
167         }
168         db_printf(") at ");
169         db_printsym(callpc, DB_STGY_PROC);
170         db_printf("\n");
171 }
172
173 /*
174  * Figure out the next frame up in the call stack.
175  */
176 static void
177 db_nextframe(struct i386_frame **fp, db_addr_t *ip)
178 {
179         struct trapframe *tf;
180         int frame_type;
181         int eip, esp, ebp;
182         db_expr_t offset;
183         const char *sym, *name;
184
185         eip = db_get_value((int) &(*fp)->f_retaddr, 4, FALSE);
186         ebp = db_get_value((int) &(*fp)->f_frame, 4, FALSE);
187
188         /*
189          * Figure out frame type.
190          */
191
192         frame_type = NORMAL;
193
194         sym = db_search_symbol(eip, DB_STGY_ANY, &offset);
195         db_symbol_values(sym, &name, NULL);
196         if (name != NULL) {
197                 if (!strcmp(name, "calltrap")) {
198                         frame_type = TRAP;
199                 } else if (!strncmp(name, "Xresume", 7)) {
200                         frame_type = INTERRUPT;
201                 } else if (!strcmp(name, "_Xsyscall")) {
202                         frame_type = SYSCALL;
203                 }
204         }
205
206         /*
207          * Normal frames need no special processing.
208          */
209         if (frame_type == NORMAL) {
210                 *ip = (db_addr_t) eip;
211                 *fp = (struct i386_frame *) ebp;
212                 return;
213         }
214
215         db_print_stack_entry(name, 0, 0, 0, eip);
216
217         /*
218          * Point to base of trapframe which is just above the
219          * current frame.
220          */
221         tf = (struct trapframe *) ((int)*fp + 8);
222
223 #if 0
224         esp = (ISPL(tf->tf_cs) == SEL_UPL) ?  tf->tf_esp : (int)&tf->tf_esp;
225 #endif
226         esp = (int)&tf->tf_esp;
227
228         switch (frame_type) {
229         case TRAP:
230                 {
231                         eip = tf->tf_eip;
232                         ebp = tf->tf_ebp;
233                         db_printf(
234                     "--- trap %#r, eip = %#r, esp = %#r, ebp = %#r ---\n",
235                             tf->tf_trapno, eip, esp, ebp);
236                 }
237                 break;
238         case SYSCALL:
239                 {
240                         eip = tf->tf_eip;
241                         ebp = tf->tf_ebp;
242                         db_printf(
243                     "--- syscall %#r, eip = %#r, esp = %#r, ebp = %#r ---\n",
244                             tf->tf_eax, eip, esp, ebp);
245                 }
246                 break;
247         case INTERRUPT:
248                 tf = (struct trapframe *)((int)*fp + 16);
249                 {
250                         eip = tf->tf_eip;
251                         ebp = tf->tf_ebp;
252                         db_printf(
253                     "--- interrupt, eip = %#r, esp = %#r, ebp = %#r ---\n",
254                             eip, esp, ebp);
255                 }
256                 break;
257         default:
258                 break;
259         }
260
261         *ip = (db_addr_t) eip;
262         *fp = (struct i386_frame *) ebp;
263 }
264
265 void
266 db_stack_trace_cmd(db_expr_t addr, boolean_t have_addr, db_expr_t count,
267                    char *modif)
268 {
269         struct i386_frame *frame;
270         int *argp;
271         db_addr_t callpc;
272         boolean_t first;
273         int i;
274
275         if (count == -1)
276                 count = 1024;
277
278         if (!have_addr) {
279                 frame = (struct i386_frame *)BP_REGS(&ddb_regs);
280                 if (frame == NULL)
281                         frame = (struct i386_frame *)(SP_REGS(&ddb_regs) - 4);
282                 callpc = PC_REGS(&ddb_regs);
283         } else {
284                 /*
285                  * Look for something that might be a frame pointer, just as
286                  * a convenience.
287                  */
288                 frame = (struct i386_frame *)addr;
289                 for (i = 0; i < 4096; i += 4) {
290                         struct i386_frame *check;
291
292                         check = (struct i386_frame *)db_get_value((int)((char *)&frame->f_frame + i), 4, FALSE);
293                         if ((char *)check - (char *)frame >= 0 &&
294                             (char *)check - (char *)frame < 4096
295                         ) {
296                                 break;
297                         }
298                         db_printf("%p does not look like a stack frame, skipping\n", (char *)&frame->f_frame + i);
299                 }
300                 if (i == 4096) {
301                         db_printf("Unable to find anything that looks like a stack frame\n");
302                         return;
303                 }
304                 frame = (void *)((char *)frame + i);
305                 db_printf("Trace beginning at frame %p\n", frame);
306                 callpc = (db_addr_t)db_get_value((int)&frame->f_retaddr, 4, FALSE);
307         }
308
309         first = TRUE;
310         while (count--) {
311                 struct i386_frame *actframe;
312                 int             narg;
313                 const char *    name;
314                 db_expr_t       offset;
315                 c_db_sym_t      sym;
316 #define MAXNARG 16
317                 char    *argnames[MAXNARG], **argnp = NULL;
318
319                 sym = db_search_symbol(callpc, DB_STGY_ANY, &offset);
320                 db_symbol_values(sym, &name, NULL);
321
322                 /*
323                  * Attempt to determine a (possibly fake) frame that gives
324                  * the caller's pc.  It may differ from `frame' if the
325                  * current function never sets up a standard frame or hasn't
326                  * set one up yet or has just discarded one.  The last two
327                  * cases can be guessed fairly reliably for code generated
328                  * by gcc.  The first case is too much trouble to handle in
329                  * general because the amount of junk on the stack depends
330                  * on the pc (the special handling of "calltrap", etc. in
331                  * db_nextframe() works because the `next' pc is special).
332                  */
333                 actframe = frame;
334                 if (first) {
335                         if (!have_addr) {
336                                 int instr;
337
338                                 instr = db_get_value(callpc, 4, FALSE);
339                                 if ((instr & 0x00ffffff) == 0x00e58955) {
340                                         /* pushl %ebp; movl %esp, %ebp */
341                                         actframe = (struct i386_frame *)
342                                             (SP_REGS(&ddb_regs) - 4);
343                                 } else if ((instr & 0x0000ffff) == 0x0000e589) {
344                                         /* movl %esp, %ebp */
345                                         actframe = (struct i386_frame *)
346                                             SP_REGS(&ddb_regs);
347                                         if (ddb_regs.tf_ebp == 0) {
348                                                 /* Fake caller's frame better. */
349                                                 frame = actframe;
350                                         }
351                                 } else if ((instr & 0x000000ff) == 0x000000c3) {
352                                         /* ret */
353                                         actframe = (struct i386_frame *)
354                                             (SP_REGS(&ddb_regs) - 4);
355                                 } else if (offset == 0) {
356                                         /* Probably a symbol in assembler code. */
357                                         actframe = (struct i386_frame *)
358                                             (SP_REGS(&ddb_regs) - 4);
359                                 }
360                         } else if (!strcmp(name, "fork_trampoline")) {
361                                 /*
362                                  * Don't try to walk back on a stack for a
363                                  * process that hasn't actually been run yet.
364                                  */
365                                 db_print_stack_entry(name, 0, 0, 0, callpc);
366                                 break;
367                         }
368                         first = FALSE;
369                 }
370
371                 argp = &actframe->f_arg0;
372                 narg = MAXNARG;
373                 if (sym != NULL && db_sym_numargs(sym, &narg, argnames)) {
374                         argnp = argnames;
375                 } else {
376                         narg = db_numargs(frame);
377                 }
378
379                 db_print_stack_entry(name, narg, argnp, argp, callpc);
380
381                 if (actframe != frame) {
382                         /* `frame' belongs to caller. */
383                         callpc = (db_addr_t)
384                             db_get_value((int)&actframe->f_retaddr, 4, FALSE);
385                         continue;
386                 }
387
388                 db_nextframe(&frame, &callpc);
389
390                 {
391                         sym = db_search_symbol(callpc, DB_STGY_ANY, &offset);
392                         db_symbol_values(sym, &name, NULL);
393                         db_print_stack_entry(name, 0, 0, 0, callpc);
394                         break;
395                 }
396                 if (frame == 0)
397                         break;
398         }
399 }
400
401 void
402 db_print_backtrace(void)
403 {
404         register_t  ebp;
405
406         __asm __volatile("movl %%ebp, %0" : "=r" (ebp));
407         db_stack_trace_cmd(ebp, 1, -1, NULL);
408 }
409
410 #define DB_DRX_FUNC(reg)                                                \
411 int                                                                     \
412 db_ ## reg (struct db_variable *vp, db_expr_t *valuep, int op)          \
413 {                                                                       \
414         if (op == DB_VAR_GET)                                           \
415                 *valuep = r ## reg ();                                  \
416         else                                                            \
417                 load_ ## reg (*valuep);                                 \
418                                                                         \
419         return(0);                                                      \
420
421
422 DB_DRX_FUNC(dr0)
423 DB_DRX_FUNC(dr1)
424 DB_DRX_FUNC(dr2)
425 DB_DRX_FUNC(dr3)
426 DB_DRX_FUNC(dr4)
427 DB_DRX_FUNC(dr5)
428 DB_DRX_FUNC(dr6)
429 DB_DRX_FUNC(dr7)
430
431 static int
432 ki386_set_watch(int watchnum, unsigned int watchaddr, int size, int access,
433                struct dbreg *d)
434 {
435         int i;
436         unsigned int mask;
437         
438         if (watchnum == -1) {
439                 for (i = 0, mask = 0x3; i < 4; i++, mask <<= 2)
440                         if ((d->dr7 & mask) == 0)
441                                 break;
442                 if (i < 4)
443                         watchnum = i;
444                 else
445                         return(-1);
446         }
447         
448         switch (access) {
449         case DBREG_DR7_EXEC:
450                 size = 1; /* size must be 1 for an execution breakpoint */
451                 /* fall through */
452         case DBREG_DR7_WRONLY:
453         case DBREG_DR7_RDWR:
454                 break;
455         default:
456                 return(-1);
457         }
458
459         /*
460          * we can watch a 1, 2, or 4 byte sized location
461          */
462         switch (size) {
463         case 1:
464                 mask = 0x00;
465                 break;
466         case 2:
467                 mask = 0x01 << 2;
468                 break;
469         case 4:
470                 mask = 0x03 << 2;
471                 break;
472         default:
473                 return(-1);
474         }
475
476         mask |= access;
477
478         /* clear the bits we are about to affect */
479         d->dr7 &= ~((0x3 << (watchnum * 2)) | (0x0f << (watchnum * 4 + 16)));
480
481         /* set drN register to the address, N=watchnum */
482         DBREG_DRX(d, watchnum) = watchaddr;
483
484         /* enable the watchpoint */
485         d->dr7 |= (0x2 << (watchnum * 2)) | (mask << (watchnum * 4 + 16));
486
487         return(watchnum);
488 }
489
490
491 int
492 ki386_clr_watch(int watchnum, struct dbreg *d)
493 {
494         if (watchnum < 0 || watchnum >= 4)
495                 return(-1);
496         
497         d->dr7 &= ~((0x3 << (watchnum * 2)) | (0x0f << (watchnum * 4 + 16)));
498         DBREG_DRX(d, watchnum) = 0;
499         
500         return(0);
501 }
502
503
504 int
505 db_md_set_watchpoint(db_expr_t addr, db_expr_t size)
506 {
507         int avail, wsize;
508         int i;
509         struct dbreg d;
510         
511         fill_dbregs(NULL, &d);
512         
513         avail = 0;
514         for(i=0; i < 4; i++) {
515                 if ((d.dr7 & (3 << (i * 2))) == 0)
516                         avail++;
517         }
518         
519         if (avail * 4 < size)
520                 return(-1);
521         
522         for (i=0; i < 4 && (size != 0); i++) {
523                 if ((d.dr7 & (3 << (i * 2))) == 0) {
524                         if (size > 4)
525                                 wsize = 4;
526                         else
527                                 wsize = size;
528                         if (wsize == 3)
529                                 wsize++;
530                         ki386_set_watch(i, addr, wsize, DBREG_DR7_WRONLY, &d);
531                         addr += wsize;
532                         size -= wsize;
533                 }
534         }
535
536         set_dbregs(NULL, &d);
537
538         return(0);
539 }
540
541 int
542 db_md_clr_watchpoint(db_expr_t addr, db_expr_t size)
543 {
544         int i;
545         struct dbreg d;
546
547         fill_dbregs(NULL, &d);
548
549         for(i=0; i<4; i++) {
550                 if (d.dr7 & (3 << (i * 2))) {
551                         if ((DBREG_DRX((&d), i) >= addr) && 
552                             (DBREG_DRX((&d), i) < addr + size))
553                                 ki386_clr_watch(i, &d);
554                 }
555         }
556
557         set_dbregs(NULL, &d);
558
559         return(0);
560 }
561
562 static char *
563 watchtype_str(int type)
564 {
565         switch (type) {
566         case DBREG_DR7_EXEC:
567                 return "execute";
568         case DBREG_DR7_RDWR:
569                 return "read/write";
570         case DBREG_DR7_WRONLY:
571                 return "write";
572         default:
573                 return "invalid";
574         }
575 }
576
577 void
578 db_md_list_watchpoints(void)
579 {
580         int i;
581         struct dbreg d;
582
583         fill_dbregs(NULL, &d);
584
585         db_printf("\nhardware watchpoints:\n");
586         db_printf("  watch    status        type  len     address\n"
587                   "  -----  --------  ----------  ---  ----------\n");
588         for (i=0; i < 4; i++) {
589                 if (d.dr7 & (0x03 << (i * 2))) {
590                         unsigned type, len;
591                         type = (d.dr7 >> (16 + (i * 4))) & 3;
592                         len =  (d.dr7 >> (16 + (i * 4) + 2)) & 3;
593                         db_printf("  %-5d  %-8s  %10s  %3d  0x%08x\n",
594                                   i, "enabled", watchtype_str(type), 
595                                   len + 1, DBREG_DRX((&d), i));
596                 } else {
597                         db_printf("  %-5d  disabled\n", i);
598                 }
599         }
600
601         db_printf("\ndebug register values:\n");
602         for (i=0; i < 8; i++)
603                 db_printf("  dr%d 0x%08x\n", i, DBREG_DRX((&d),i));
604         db_printf("\n");
605 }