[5bb8e45] | 1 | /*
|
---|
| 2 | * Copyright (C) 2005 Ondrej Palkovsky
|
---|
| 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 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[06e1e95] | 29 | /** @addtogroup mips32debug
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[5bb8e45] | 35 | #include <arch/debugger.h>
|
---|
| 36 | #include <memstr.h>
|
---|
| 37 | #include <console/kconsole.h>
|
---|
| 38 | #include <console/cmd.h>
|
---|
| 39 | #include <symtab.h>
|
---|
| 40 | #include <print.h>
|
---|
| 41 | #include <panic.h>
|
---|
| 42 | #include <arch.h>
|
---|
| 43 | #include <arch/cp0.h>
|
---|
| 44 | #include <func.h>
|
---|
| 45 |
|
---|
| 46 | bpinfo_t breakpoints[BKPOINTS_MAX];
|
---|
[dc747e3] | 47 | SPINLOCK_INITIALIZE(bkpoint_lock);
|
---|
[5bb8e45] | 48 |
|
---|
| 49 | static int cmd_print_breakpoints(cmd_arg_t *argv);
|
---|
[0132630] | 50 | static cmd_info_t bkpts_info = {
|
---|
| 51 | .name = "bkpts",
|
---|
[5bb8e45] | 52 | .description = "Print breakpoint table.",
|
---|
| 53 | .func = cmd_print_breakpoints,
|
---|
| 54 | .argc = 0,
|
---|
| 55 | };
|
---|
| 56 |
|
---|
| 57 | static int cmd_del_breakpoint(cmd_arg_t *argv);
|
---|
| 58 | static cmd_arg_t del_argv = {
|
---|
| 59 | .type = ARG_TYPE_INT
|
---|
| 60 | };
|
---|
| 61 | static cmd_info_t delbkpt_info = {
|
---|
| 62 | .name = "delbkpt",
|
---|
| 63 | .description = "delbkpt <number> - Delete breakpoint.",
|
---|
| 64 | .func = cmd_del_breakpoint,
|
---|
| 65 | .argc = 1,
|
---|
| 66 | .argv = &del_argv
|
---|
| 67 | };
|
---|
| 68 |
|
---|
| 69 | static int cmd_add_breakpoint(cmd_arg_t *argv);
|
---|
| 70 | static cmd_arg_t add_argv = {
|
---|
| 71 | .type = ARG_TYPE_INT
|
---|
| 72 | };
|
---|
| 73 | static cmd_info_t addbkpt_info = {
|
---|
| 74 | .name = "addbkpt",
|
---|
| 75 | .description = "addbkpt <&symbol> - new bkpoint. Break on J/Branch insts unsupported.",
|
---|
| 76 | .func = cmd_add_breakpoint,
|
---|
| 77 | .argc = 1,
|
---|
| 78 | .argv = &add_argv
|
---|
| 79 | };
|
---|
| 80 |
|
---|
[07bd114e] | 81 | static cmd_arg_t adde_argv[] = {
|
---|
| 82 | { .type = ARG_TYPE_INT },
|
---|
| 83 | { .type = ARG_TYPE_INT }
|
---|
| 84 | };
|
---|
| 85 | static cmd_info_t addbkpte_info = {
|
---|
| 86 | .name = "addbkpte",
|
---|
| 87 | .description = "addebkpte <&symbol> <&func> - new bkpoint. Call func(or Nothing if 0).",
|
---|
| 88 | .func = cmd_add_breakpoint,
|
---|
| 89 | .argc = 2,
|
---|
| 90 | .argv = adde_argv
|
---|
| 91 | };
|
---|
| 92 |
|
---|
| 93 | static struct {
|
---|
[7f1c620] | 94 | uint32_t andmask;
|
---|
| 95 | uint32_t value;
|
---|
[07bd114e] | 96 | }jmpinstr[] = {
|
---|
| 97 | {0xf3ff0000, 0x41000000}, /* BCzF */
|
---|
| 98 | {0xf3ff0000, 0x41020000}, /* BCzFL */
|
---|
| 99 | {0xf3ff0000, 0x41010000}, /* BCzT */
|
---|
| 100 | {0xf3ff0000, 0x41030000}, /* BCzTL */
|
---|
| 101 | {0xfc000000, 0x10000000}, /* BEQ */
|
---|
| 102 | {0xfc000000, 0x50000000}, /* BEQL */
|
---|
| 103 | {0xfc1f0000, 0x04010000}, /* BEQL */
|
---|
| 104 | {0xfc1f0000, 0x04110000}, /* BGEZAL */
|
---|
| 105 | {0xfc1f0000, 0x04130000}, /* BGEZALL */
|
---|
| 106 | {0xfc1f0000, 0x04030000}, /* BGEZL */
|
---|
| 107 | {0xfc1f0000, 0x1c000000}, /* BGTZ */
|
---|
| 108 | {0xfc1f0000, 0x5c000000}, /* BGTZL */
|
---|
| 109 | {0xfc1f0000, 0x18000000}, /* BLEZ */
|
---|
| 110 | {0xfc1f0000, 0x58000000}, /* BLEZL */
|
---|
| 111 | {0xfc1f0000, 0x04000000}, /* BLTZ */
|
---|
| 112 | {0xfc1f0000, 0x04100000}, /* BLTZAL */
|
---|
| 113 | {0xfc1f0000, 0x04120000}, /* BLTZALL */
|
---|
| 114 | {0xfc1f0000, 0x04020000}, /* BLTZL */
|
---|
| 115 | {0xfc000000, 0x14000000}, /* BNE */
|
---|
| 116 | {0xfc000000, 0x54000000}, /* BNEL */
|
---|
| 117 | {0xfc000000, 0x08000000}, /* J */
|
---|
| 118 | {0xfc000000, 0x0c000000}, /* JAL */
|
---|
| 119 | {0xfc1f07ff, 0x00000009}, /* JALR */
|
---|
| 120 | {0,0} /* EndOfTable */
|
---|
| 121 | };
|
---|
| 122 |
|
---|
| 123 | /** Test, if the given instruction is a jump or branch instruction
|
---|
| 124 | *
|
---|
| 125 | * @param instr Instruction code
|
---|
| 126 | * @return true - it is jump instruction, false otherwise
|
---|
| 127 | */
|
---|
[7f1c620] | 128 | static bool is_jump(unative_t instr)
|
---|
[07bd114e] | 129 | {
|
---|
| 130 | int i;
|
---|
| 131 |
|
---|
| 132 | for (i=0;jmpinstr[i].andmask;i++) {
|
---|
| 133 | if ((instr & jmpinstr[i].andmask) == jmpinstr[i].value)
|
---|
| 134 | return true;
|
---|
| 135 | }
|
---|
| 136 |
|
---|
| 137 | return false;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
[5bb8e45] | 140 | /** Add new breakpoint to table */
|
---|
| 141 | int cmd_add_breakpoint(cmd_arg_t *argv)
|
---|
| 142 | {
|
---|
| 143 | bpinfo_t *cur = NULL;
|
---|
| 144 | ipl_t ipl;
|
---|
| 145 | int i;
|
---|
| 146 |
|
---|
| 147 | if (argv->intval & 0x3) {
|
---|
| 148 | printf("Not aligned instruction, forgot to use &symbol?\n");
|
---|
| 149 | return 1;
|
---|
| 150 | }
|
---|
| 151 | ipl = interrupts_disable();
|
---|
| 152 | spinlock_lock(&bkpoint_lock);
|
---|
| 153 |
|
---|
| 154 | /* Check, that the breakpoints do not conflict */
|
---|
| 155 | for (i=0; i<BKPOINTS_MAX; i++) {
|
---|
[7f1c620] | 156 | if (breakpoints[i].address == (uintptr_t)argv->intval) {
|
---|
[5bb8e45] | 157 | printf("Duplicate breakpoint %d.\n", i);
|
---|
| 158 | spinlock_unlock(&bkpoints_lock);
|
---|
| 159 | return 0;
|
---|
[7f1c620] | 160 | } else if (breakpoints[i].address == (uintptr_t)argv->intval + sizeof(unative_t) || \
|
---|
| 161 | breakpoints[i].address == (uintptr_t)argv->intval - sizeof(unative_t)) {
|
---|
[5bb8e45] | 162 | printf("Adjacent breakpoints not supported, conflict with %d.\n", i);
|
---|
| 163 | spinlock_unlock(&bkpoints_lock);
|
---|
| 164 | return 0;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
| 167 | }
|
---|
| 168 |
|
---|
| 169 | for (i=0; i<BKPOINTS_MAX; i++)
|
---|
| 170 | if (!breakpoints[i].address) {
|
---|
| 171 | cur = &breakpoints[i];
|
---|
| 172 | break;
|
---|
| 173 | }
|
---|
| 174 | if (!cur) {
|
---|
| 175 | printf("Too many breakpoints.\n");
|
---|
| 176 | spinlock_unlock(&bkpoint_lock);
|
---|
| 177 | interrupts_restore(ipl);
|
---|
| 178 | return 0;
|
---|
| 179 | }
|
---|
[7f1c620] | 180 | cur->address = (uintptr_t) argv->intval;
|
---|
[5bb8e45] | 181 | printf("Adding breakpoint on address: %p\n", argv->intval);
|
---|
[7f1c620] | 182 | cur->instruction = ((unative_t *)cur->address)[0];
|
---|
| 183 | cur->nextinstruction = ((unative_t *)cur->address)[1];
|
---|
[07bd114e] | 184 | if (argv == &add_argv) {
|
---|
| 185 | cur->flags = 0;
|
---|
| 186 | } else { /* We are add extended */
|
---|
| 187 | cur->flags = BKPOINT_FUNCCALL;
|
---|
[25d7709] | 188 | cur->bkfunc = (void (*)(void *, istate_t *)) argv[1].intval;
|
---|
[07bd114e] | 189 | }
|
---|
| 190 | if (is_jump(cur->instruction))
|
---|
| 191 | cur->flags |= BKPOINT_ONESHOT;
|
---|
| 192 | cur->counter = 0;
|
---|
[5bb8e45] | 193 |
|
---|
| 194 | /* Set breakpoint */
|
---|
[7f1c620] | 195 | *((unative_t *)cur->address) = 0x0d;
|
---|
[5bb8e45] | 196 |
|
---|
| 197 | spinlock_unlock(&bkpoint_lock);
|
---|
| 198 | interrupts_restore(ipl);
|
---|
| 199 |
|
---|
| 200 | return 1;
|
---|
| 201 | }
|
---|
| 202 |
|
---|
[07bd114e] | 203 |
|
---|
| 204 |
|
---|
[5bb8e45] | 205 | /** Remove breakpoint from table */
|
---|
| 206 | int cmd_del_breakpoint(cmd_arg_t *argv)
|
---|
| 207 | {
|
---|
| 208 | bpinfo_t *cur;
|
---|
| 209 | ipl_t ipl;
|
---|
| 210 |
|
---|
| 211 | if (argv->intval < 0 || argv->intval > BKPOINTS_MAX) {
|
---|
| 212 | printf("Invalid breakpoint number.\n");
|
---|
| 213 | return 0;
|
---|
| 214 | }
|
---|
| 215 | ipl = interrupts_disable();
|
---|
| 216 | spinlock_lock(&bkpoint_lock);
|
---|
| 217 |
|
---|
| 218 | cur = &breakpoints[argv->intval];
|
---|
| 219 | if (!cur->address) {
|
---|
| 220 | printf("Breakpoint does not exist.\n");
|
---|
| 221 | spinlock_unlock(&bkpoint_lock);
|
---|
| 222 | interrupts_restore(ipl);
|
---|
| 223 | return 0;
|
---|
| 224 | }
|
---|
[07bd114e] | 225 | if ((cur->flags & BKPOINT_INPROG) && (cur->flags & BKPOINT_ONESHOT)) {
|
---|
| 226 | printf("Cannot remove one-shot breakpoint in-progress\n");
|
---|
| 227 | spinlock_unlock(&bkpoint_lock);
|
---|
| 228 | interrupts_restore(ipl);
|
---|
| 229 | return 0;
|
---|
| 230 | }
|
---|
[7f1c620] | 231 | ((uint32_t *)cur->address)[0] = cur->instruction;
|
---|
| 232 | ((uint32_t *)cur->address)[1] = cur->nextinstruction;
|
---|
[5bb8e45] | 233 |
|
---|
| 234 | cur->address = NULL;
|
---|
| 235 |
|
---|
| 236 | spinlock_unlock(&bkpoint_lock);
|
---|
| 237 | interrupts_restore(ipl);
|
---|
| 238 | return 1;
|
---|
| 239 | }
|
---|
| 240 |
|
---|
| 241 | /** Print table of active breakpoints */
|
---|
| 242 | int cmd_print_breakpoints(cmd_arg_t *argv)
|
---|
| 243 | {
|
---|
| 244 | int i;
|
---|
| 245 | char *symbol;
|
---|
| 246 |
|
---|
| 247 | printf("Breakpoint table.\n");
|
---|
| 248 | for (i=0; i < BKPOINTS_MAX; i++)
|
---|
| 249 | if (breakpoints[i].address) {
|
---|
| 250 | symbol = get_symtab_entry(breakpoints[i].address);
|
---|
[280a27e] | 251 | printf("%d. %p in %s\n",i,
|
---|
[5bb8e45] | 252 | breakpoints[i].address, symbol);
|
---|
[07bd114e] | 253 | printf(" Count(%d) ", breakpoints[i].counter);
|
---|
| 254 | if (breakpoints[i].flags & BKPOINT_INPROG)
|
---|
| 255 | printf("INPROG ");
|
---|
| 256 | if (breakpoints[i].flags & BKPOINT_ONESHOT)
|
---|
| 257 | printf("ONESHOT ");
|
---|
| 258 | if (breakpoints[i].flags & BKPOINT_FUNCCALL)
|
---|
| 259 | printf("FUNCCALL ");
|
---|
| 260 | printf("\n");
|
---|
[5bb8e45] | 261 | }
|
---|
| 262 | return 1;
|
---|
| 263 | }
|
---|
| 264 |
|
---|
| 265 | /** Initialize debugger */
|
---|
| 266 | void debugger_init()
|
---|
| 267 | {
|
---|
| 268 | int i;
|
---|
| 269 |
|
---|
| 270 | for (i=0; i<BKPOINTS_MAX; i++)
|
---|
| 271 | breakpoints[i].address = NULL;
|
---|
| 272 |
|
---|
[0132630] | 273 | cmd_initialize(&bkpts_info);
|
---|
| 274 | if (!cmd_register(&bkpts_info))
|
---|
| 275 | panic("could not register command %s\n", bkpts_info.name);
|
---|
[5bb8e45] | 276 |
|
---|
| 277 | cmd_initialize(&delbkpt_info);
|
---|
| 278 | if (!cmd_register(&delbkpt_info))
|
---|
| 279 | panic("could not register command %s\n", delbkpt_info.name);
|
---|
| 280 |
|
---|
| 281 | cmd_initialize(&addbkpt_info);
|
---|
| 282 | if (!cmd_register(&addbkpt_info))
|
---|
| 283 | panic("could not register command %s\n", addbkpt_info.name);
|
---|
[07bd114e] | 284 |
|
---|
| 285 | cmd_initialize(&addbkpte_info);
|
---|
| 286 | if (!cmd_register(&addbkpte_info))
|
---|
| 287 | panic("could not register command %s\n", addbkpte_info.name);
|
---|
[5bb8e45] | 288 | }
|
---|
| 289 |
|
---|
| 290 | /** Handle breakpoint
|
---|
| 291 | *
|
---|
| 292 | * Find breakpoint in breakpoint table.
|
---|
| 293 | * If found, call kconsole, set break on next instruction and reexecute.
|
---|
| 294 | * If we are on "next instruction", set it back on the first and reexecute.
|
---|
| 295 | * If breakpoint not found in breakpoint table, call kconsole and start
|
---|
| 296 | * next instruction.
|
---|
| 297 | */
|
---|
[25d7709] | 298 | void debugger_bpoint(istate_t *istate)
|
---|
[5bb8e45] | 299 | {
|
---|
| 300 | bpinfo_t *cur = NULL;
|
---|
[7f1c620] | 301 | uintptr_t fireaddr = istate->epc;
|
---|
[5bb8e45] | 302 | int i;
|
---|
| 303 |
|
---|
| 304 | /* test branch delay slot */
|
---|
| 305 | if (cp0_cause_read() & 0x80000000)
|
---|
| 306 | panic("Breakpoint in branch delay slot not supported.\n");
|
---|
| 307 |
|
---|
| 308 | spinlock_lock(&bkpoint_lock);
|
---|
| 309 | for (i=0; i<BKPOINTS_MAX; i++) {
|
---|
[07bd114e] | 310 | /* Normal breakpoint */
|
---|
| 311 | if (fireaddr == breakpoints[i].address \
|
---|
| 312 | && !(breakpoints[i].flags & BKPOINT_REINST)) {
|
---|
[5bb8e45] | 313 | cur = &breakpoints[i];
|
---|
[07bd114e] | 314 | break;
|
---|
| 315 | }
|
---|
| 316 | /* Reinst only breakpoint */
|
---|
| 317 | if ((breakpoints[i].flags & BKPOINT_REINST) \
|
---|
[7f1c620] | 318 | && (fireaddr ==breakpoints[i].address+sizeof(unative_t))) {
|
---|
[07bd114e] | 319 | cur = &breakpoints[i];
|
---|
| 320 | break;
|
---|
| 321 | }
|
---|
[5bb8e45] | 322 | }
|
---|
| 323 | if (cur) {
|
---|
[07bd114e] | 324 | if (cur->flags & BKPOINT_REINST) {
|
---|
[5bb8e45] | 325 | /* Set breakpoint on first instruction */
|
---|
[7f1c620] | 326 | ((uint32_t *)cur->address)[0] = 0x0d;
|
---|
[5bb8e45] | 327 | /* Return back the second */
|
---|
[7f1c620] | 328 | ((uint32_t *)cur->address)[1] = cur->nextinstruction;
|
---|
[07bd114e] | 329 | cur->flags &= ~BKPOINT_REINST;
|
---|
[5bb8e45] | 330 | spinlock_unlock(&bkpoint_lock);
|
---|
| 331 | return;
|
---|
[07bd114e] | 332 | }
|
---|
| 333 | if (cur->flags & BKPOINT_INPROG)
|
---|
| 334 | printf("Warning: breakpoint recursion\n");
|
---|
| 335 |
|
---|
| 336 | if (!(cur->flags & BKPOINT_FUNCCALL))
|
---|
[280a27e] | 337 | printf("***Breakpoint %d: %p in %s.\n", i,
|
---|
[25d7709] | 338 | fireaddr, get_symtab_entry(istate->epc));
|
---|
[07bd114e] | 339 |
|
---|
| 340 | /* Return first instruction back */
|
---|
[7f1c620] | 341 | ((uint32_t *)cur->address)[0] = cur->instruction;
|
---|
[07bd114e] | 342 |
|
---|
| 343 | if (! (cur->flags & BKPOINT_ONESHOT)) {
|
---|
| 344 | /* Set Breakpoint on next instruction */
|
---|
[7f1c620] | 345 | ((uint32_t *)cur->address)[1] = 0x0d;
|
---|
[07bd114e] | 346 | cur->flags |= BKPOINT_REINST;
|
---|
| 347 | }
|
---|
| 348 | cur->flags |= BKPOINT_INPROG;
|
---|
[5bb8e45] | 349 | } else {
|
---|
[280a27e] | 350 | printf("***Breakpoint %p in %s.\n", fireaddr,
|
---|
[07bd114e] | 351 | get_symtab_entry(fireaddr));
|
---|
[5bb8e45] | 352 | /* Move on to next instruction */
|
---|
[25d7709] | 353 | istate->epc += 4;
|
---|
[5bb8e45] | 354 | }
|
---|
[9f3b880] | 355 | if (cur)
|
---|
| 356 | cur->counter++;
|
---|
[07bd114e] | 357 | if (cur && (cur->flags & BKPOINT_FUNCCALL)) {
|
---|
| 358 | /* Allow zero bkfunc, just for counting */
|
---|
| 359 | if (cur->bkfunc)
|
---|
[25d7709] | 360 | cur->bkfunc(cur, istate);
|
---|
[07bd114e] | 361 | } else {
|
---|
| 362 | printf("***Type 'exit' to exit kconsole.\n");
|
---|
| 363 | /* This disables all other processors - we are not SMP,
|
---|
| 364 | * actually this gets us to cpu_halt, if scheduler() is run
|
---|
| 365 | * - we generally do not want scheduler to be run from debug,
|
---|
| 366 | * so this is a good idea
|
---|
| 367 | */
|
---|
| 368 | atomic_set(&haltstate,1);
|
---|
| 369 | spinlock_unlock(&bkpoint_lock);
|
---|
[5bb8e45] | 370 |
|
---|
[07bd114e] | 371 | kconsole("debug");
|
---|
| 372 |
|
---|
| 373 | spinlock_lock(&bkpoint_lock);
|
---|
| 374 | atomic_set(&haltstate,0);
|
---|
| 375 | }
|
---|
| 376 | if (cur && cur->address == fireaddr && (cur->flags & BKPOINT_INPROG)) {
|
---|
| 377 | /* Remove one-shot breakpoint */
|
---|
| 378 | if ((cur->flags & BKPOINT_ONESHOT))
|
---|
| 379 | cur->address = NULL;
|
---|
| 380 | /* Remove in-progress flag */
|
---|
| 381 | cur->flags &= ~BKPOINT_INPROG;
|
---|
| 382 | }
|
---|
| 383 | spinlock_unlock(&bkpoint_lock);
|
---|
[5bb8e45] | 384 | }
|
---|
[b45c443] | 385 |
|
---|
[06e1e95] | 386 | /** @}
|
---|
[b45c443] | 387 | */
|
---|