blob: 839d47a8c695edcdcd06a6db667513a37e15b75b [file] [log] [blame]
Christopher Ferris20303f82014-01-10 16:33:16 -08001/*
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 Beare84924902010-10-13 14:21:30 -070017
Elliott Hughes9e7d2182013-11-26 18:01:29 -080018#include <errno.h>
Elliott Hughes9e7d2182013-11-26 18:01:29 -080019#include <stddef.h>
20#include <stdio.h>
Jeff Brown053b8652012-06-06 16:25:03 -070021#include <stdlib.h>
22#include <string.h>
Bruce Beare84924902010-10-13 14:21:30 -070023#include <sys/ptrace.h>
Elliott Hughes9e7d2182013-11-26 18:01:29 -080024#include <sys/types.h>
25#include <sys/user.h>
Bruce Beare84924902010-10-13 14:21:30 -070026
Jeff Brown13e715b2011-10-21 12:14:56 -070027#include "../utility.h"
28#include "../machine.h"
Bruce Beare84924902010-10-13 14:21:30 -070029
Christopher Ferris20303f82014-01-10 16:33:16 -080030// enable to dump memory pointed to by every register
Jeff Brown13e715b2011-10-21 12:14:56 -070031#define DUMP_MEMORY_FOR_ALL_REGISTERS 1
Andy McFaddenf2eae5a2011-10-18 15:42:03 -070032
Bruce Beare84924902010-10-13 14:21:30 -070033#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 Ferris20303f82014-01-10 16:33:16 -080041// If configured to do so, dump memory around *all* registers
42// for the crashing thread.
Brigid Smith62ba4892014-06-10 11:53:08 -070043void dump_memory_and_code(log_t* log, pid_t tid) {
Christopher Ferris20303f82014-01-10 16:33:16 -080044 struct pt_regs regs;
45 if (ptrace(PTRACE_GETREGS, tid, 0, &regs)) {
46 return;
47 }
48
Brigid Smith62ba4892014-06-10 11:53:08 -070049 static const char REG_NAMES[] = "r0r1r2r3r4r5r6r7r8r9slfpipsp";
Christopher Ferris20303f82014-01-10 16:33:16 -080050
Brigid Smith62ba4892014-06-10 11:53:08 -070051 for (int reg = 0; reg < 14; reg++) {
52 // this may not be a valid way to access, but it'll do for now
53 uintptr_t addr = regs.uregs[reg];
Christopher Ferris20303f82014-01-10 16:33:16 -080054
Brigid Smith62ba4892014-06-10 11:53:08 -070055 // Don't bother if it looks like a small int or ~= null, or if
56 // it's in the kernel area.
57 if (addr < 4096 || addr >= 0xc0000000) {
58 continue;
Andy McFadden136dcc52011-09-22 16:37:06 -070059 }
Brigid Smith62ba4892014-06-10 11:53:08 -070060
61 _LOG(log, logtype::MEMORY, "\nmemory near %.2s:\n", &REG_NAMES[reg * 2]);
62 dump_memory(log, tid, addr);
Christopher Ferris20303f82014-01-10 16:33:16 -080063 }
Andy McFadden136dcc52011-09-22 16:37:06 -070064
Christopher Ferris20303f82014-01-10 16:33:16 -080065 // explicitly allow upload of code dump logging
Brigid Smith62ba4892014-06-10 11:53:08 -070066 _LOG(log, logtype::MEMORY, "\ncode around pc:\n");
67 dump_memory(log, tid, static_cast<uintptr_t>(regs.ARM_pc));
Andy McFadden136dcc52011-09-22 16:37:06 -070068
Christopher Ferris20303f82014-01-10 16:33:16 -080069 if (regs.ARM_pc != regs.ARM_lr) {
Brigid Smith62ba4892014-06-10 11:53:08 -070070 _LOG(log, logtype::MEMORY, "\ncode around lr:\n");
71 dump_memory(log, tid, static_cast<uintptr_t>(regs.ARM_lr));
Christopher Ferris20303f82014-01-10 16:33:16 -080072 }
Bruce Beare84924902010-10-13 14:21:30 -070073}
74
Brigid Smith62ba4892014-06-10 11:53:08 -070075void dump_registers(log_t* log, pid_t tid) {
Christopher Ferris20303f82014-01-10 16:33:16 -080076 struct pt_regs r;
77 if (ptrace(PTRACE_GETREGS, tid, 0, &r)) {
Brigid Smith62ba4892014-06-10 11:53:08 -070078 _LOG(log, logtype::REGISTERS, "cannot get registers: %s\n", strerror(errno));
Christopher Ferris20303f82014-01-10 16:33:16 -080079 return;
80 }
Bruce Beare84924902010-10-13 14:21:30 -070081
Brigid Smith62ba4892014-06-10 11:53:08 -070082 _LOG(log, logtype::REGISTERS, " r0 %08x r1 %08x r2 %08x r3 %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080083 static_cast<uint32_t>(r.ARM_r0), static_cast<uint32_t>(r.ARM_r1),
84 static_cast<uint32_t>(r.ARM_r2), static_cast<uint32_t>(r.ARM_r3));
Brigid Smith62ba4892014-06-10 11:53:08 -070085 _LOG(log, logtype::REGISTERS, " r4 %08x r5 %08x r6 %08x r7 %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080086 static_cast<uint32_t>(r.ARM_r4), static_cast<uint32_t>(r.ARM_r5),
87 static_cast<uint32_t>(r.ARM_r6), static_cast<uint32_t>(r.ARM_r7));
Brigid Smith62ba4892014-06-10 11:53:08 -070088 _LOG(log, logtype::REGISTERS, " r8 %08x r9 %08x sl %08x fp %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080089 static_cast<uint32_t>(r.ARM_r8), static_cast<uint32_t>(r.ARM_r9),
90 static_cast<uint32_t>(r.ARM_r10), static_cast<uint32_t>(r.ARM_fp));
Brigid Smith62ba4892014-06-10 11:53:08 -070091 _LOG(log, logtype::REGISTERS, " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n",
Christopher Ferris20303f82014-01-10 16:33:16 -080092 static_cast<uint32_t>(r.ARM_ip), static_cast<uint32_t>(r.ARM_sp),
93 static_cast<uint32_t>(r.ARM_lr), static_cast<uint32_t>(r.ARM_pc),
94 static_cast<uint32_t>(r.ARM_cpsr));
Bruce Beare84924902010-10-13 14:21:30 -070095
96#ifdef WITH_VFP
Christopher Ferris20303f82014-01-10 16:33:16 -080097 struct user_vfp vfp_regs;
98 int i;
Bruce Beare84924902010-10-13 14:21:30 -070099
Christopher Ferris20303f82014-01-10 16:33:16 -0800100 if (ptrace(PTRACE_GETVFPREGS, tid, 0, &vfp_regs)) {
Brigid Smith62ba4892014-06-10 11:53:08 -0700101 _LOG(log, logtype::REGISTERS, "cannot get registers: %s\n", strerror(errno));
Christopher Ferris20303f82014-01-10 16:33:16 -0800102 return;
103 }
Bruce Beare84924902010-10-13 14:21:30 -0700104
Christopher Ferris20303f82014-01-10 16:33:16 -0800105 for (i = 0; i < NUM_VFP_REGS; i += 2) {
Brigid Smith62ba4892014-06-10 11:53:08 -0700106 _LOG(log, logtype::REGISTERS, " d%-2d %016llx d%-2d %016llx\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800107 i, vfp_regs.fpregs[i], i+1, vfp_regs.fpregs[i+1]);
108 }
Brigid Smith62ba4892014-06-10 11:53:08 -0700109 _LOG(log, logtype::REGISTERS, " scr %08lx\n", vfp_regs.fpscr);
Bruce Beare84924902010-10-13 14:21:30 -0700110#endif
111}