Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright 2006, The Android Open Source Project |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 17 | |
Elliott Hughes | 9e7d218 | 2013-11-26 18:01:29 -0800 | [diff] [blame] | 18 | #include <errno.h> |
Elliott Hughes | 9e7d218 | 2013-11-26 18:01:29 -0800 | [diff] [blame] | 19 | #include <stddef.h> |
| 20 | #include <stdio.h> |
Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 23 | #include <sys/ptrace.h> |
Elliott Hughes | 9e7d218 | 2013-11-26 18:01:29 -0800 | [diff] [blame] | 24 | #include <sys/types.h> |
| 25 | #include <sys/user.h> |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 26 | |
Jeff Brown | 13e715b | 2011-10-21 12:14:56 -0700 | [diff] [blame] | 27 | #include "../utility.h" |
| 28 | #include "../machine.h" |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 29 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 30 | // enable to dump memory pointed to by every register |
Jeff Brown | 13e715b | 2011-10-21 12:14:56 -0700 | [diff] [blame] | 31 | #define DUMP_MEMORY_FOR_ALL_REGISTERS 1 |
Andy McFadden | f2eae5a | 2011-10-18 15:42:03 -0700 | [diff] [blame] | 32 | |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 33 | #ifdef WITH_VFP |
| 34 | #ifdef WITH_VFP_D32 |
| 35 | #define NUM_VFP_REGS 32 |
| 36 | #else |
| 37 | #define NUM_VFP_REGS 16 |
| 38 | #endif |
| 39 | #endif |
| 40 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 41 | // If configured to do so, dump memory around *all* registers |
| 42 | // for the crashing thread. |
Christopher Ferris | 365e4ae | 2013-10-02 12:26:48 -0700 | [diff] [blame] | 43 | void dump_memory_and_code(log_t* log, pid_t tid, int scope_flags) { |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 44 | struct pt_regs regs; |
| 45 | if (ptrace(PTRACE_GETREGS, tid, 0, ®s)) { |
| 46 | return; |
| 47 | } |
| 48 | |
| 49 | if (IS_AT_FAULT(scope_flags) && DUMP_MEMORY_FOR_ALL_REGISTERS) { |
| 50 | static const char REG_NAMES[] = "r0r1r2r3r4r5r6r7r8r9slfpipsp"; |
| 51 | |
| 52 | for (int reg = 0; reg < 14; reg++) { |
| 53 | // this may not be a valid way to access, but it'll do for now |
| 54 | uintptr_t addr = regs.uregs[reg]; |
| 55 | |
| 56 | // Don't bother if it looks like a small int or ~= null, or if |
| 57 | // it's in the kernel area. |
| 58 | if (addr < 4096 || addr >= 0xc0000000) { |
| 59 | continue; |
| 60 | } |
| 61 | |
| 62 | _LOG(log, scope_flags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", ®_NAMES[reg * 2]); |
| 63 | dump_memory(log, tid, addr, scope_flags | SCOPE_SENSITIVE); |
Andy McFadden | 136dcc5 | 2011-09-22 16:37:06 -0700 | [diff] [blame] | 64 | } |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 65 | } |
Andy McFadden | 136dcc5 | 2011-09-22 16:37:06 -0700 | [diff] [blame] | 66 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 67 | // explicitly allow upload of code dump logging |
| 68 | _LOG(log, scope_flags, "\ncode around pc:\n"); |
| 69 | dump_memory(log, tid, static_cast<uintptr_t>(regs.ARM_pc), scope_flags); |
Andy McFadden | 136dcc5 | 2011-09-22 16:37:06 -0700 | [diff] [blame] | 70 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 71 | if (regs.ARM_pc != regs.ARM_lr) { |
| 72 | _LOG(log, scope_flags, "\ncode around lr:\n"); |
| 73 | dump_memory(log, tid, static_cast<uintptr_t>(regs.ARM_lr), scope_flags); |
| 74 | } |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 77 | void dump_registers(log_t* log, pid_t tid, int scope_flags) { |
| 78 | struct pt_regs r; |
| 79 | if (ptrace(PTRACE_GETREGS, tid, 0, &r)) { |
| 80 | _LOG(log, scope_flags, "cannot get registers: %s\n", strerror(errno)); |
| 81 | return; |
| 82 | } |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 83 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 84 | _LOG(log, scope_flags, " r0 %08x r1 %08x r2 %08x r3 %08x\n", |
| 85 | static_cast<uint32_t>(r.ARM_r0), static_cast<uint32_t>(r.ARM_r1), |
| 86 | static_cast<uint32_t>(r.ARM_r2), static_cast<uint32_t>(r.ARM_r3)); |
| 87 | _LOG(log, scope_flags, " r4 %08x r5 %08x r6 %08x r7 %08x\n", |
| 88 | static_cast<uint32_t>(r.ARM_r4), static_cast<uint32_t>(r.ARM_r5), |
| 89 | static_cast<uint32_t>(r.ARM_r6), static_cast<uint32_t>(r.ARM_r7)); |
| 90 | _LOG(log, scope_flags, " r8 %08x r9 %08x sl %08x fp %08x\n", |
| 91 | static_cast<uint32_t>(r.ARM_r8), static_cast<uint32_t>(r.ARM_r9), |
| 92 | static_cast<uint32_t>(r.ARM_r10), static_cast<uint32_t>(r.ARM_fp)); |
| 93 | _LOG(log, scope_flags, " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n", |
| 94 | static_cast<uint32_t>(r.ARM_ip), static_cast<uint32_t>(r.ARM_sp), |
| 95 | static_cast<uint32_t>(r.ARM_lr), static_cast<uint32_t>(r.ARM_pc), |
| 96 | static_cast<uint32_t>(r.ARM_cpsr)); |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 97 | |
| 98 | #ifdef WITH_VFP |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 99 | struct user_vfp vfp_regs; |
| 100 | int i; |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 101 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 102 | if (ptrace(PTRACE_GETVFPREGS, tid, 0, &vfp_regs)) { |
| 103 | _LOG(log, scope_flags, "cannot get registers: %s\n", strerror(errno)); |
| 104 | return; |
| 105 | } |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 106 | |
Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 107 | for (i = 0; i < NUM_VFP_REGS; i += 2) { |
| 108 | _LOG(log, scope_flags, " d%-2d %016llx d%-2d %016llx\n", |
| 109 | i, vfp_regs.fpregs[i], i+1, vfp_regs.fpregs[i+1]); |
| 110 | } |
| 111 | _LOG(log, scope_flags, " scr %08lx\n", vfp_regs.fpscr); |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 112 | #endif |
| 113 | } |