blob: db44b11b70af494e2a518e75b56997e56337df2e [file] [log] [blame]
Elliott Hughes18ddd422013-11-14 17:06:46 -08001/*
Bruce Beare6cc49232010-10-13 16:11:15 -07002** Copyright 2006, The Android Open Source Project
3**
4** Licensed under the Apache License, Version 2.0 (the "License");
5** you may not use this file except in compliance with the License.
6** You may obtain a copy of the License at
7**
8** http://www.apache.org/licenses/LICENSE-2.0
9**
10** Unless required by applicable law or agreed to in writing, software
11** distributed under the License is distributed on an "AS IS" BASIS,
12** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13** See the License for the specific language governing permissions and
14** limitations under the License.
15*/
16
Jeff Brown053b8652012-06-06 16:25:03 -070017#include <stddef.h>
18#include <stdbool.h>
19#include <stdlib.h>
20#include <string.h>
Bruce Beare6cc49232010-10-13 16:11:15 -070021#include <stdio.h>
22#include <errno.h>
Bruce Beare6cc49232010-10-13 16:11:15 -070023#include <sys/types.h>
Bruce Beare6cc49232010-10-13 16:11:15 -070024#include <sys/ptrace.h>
Bruce Beare6cc49232010-10-13 16:11:15 -070025
Bruce Beare6cc49232010-10-13 16:11:15 -070026#include "../utility.h"
Jeff Brown053b8652012-06-06 16:25:03 -070027#include "../machine.h"
Bruce Beare6cc49232010-10-13 16:11:15 -070028
Christopher Ferris365e4ae2013-10-02 12:26:48 -070029void dump_memory_and_code(log_t* log, pid_t tid, int scope_flags) {
Jeff Brown053b8652012-06-06 16:25:03 -070030}
31
Christopher Ferris365e4ae2013-10-02 12:26:48 -070032void dump_registers(log_t* log, pid_t tid, int scope_flags) {
Elliott Hughes18ddd422013-11-14 17:06:46 -080033 struct pt_regs r;
34 if (ptrace(PTRACE_GETREGS, tid, 0, &r) == -1) {
Christopher Ferris365e4ae2013-10-02 12:26:48 -070035 _LOG(log, scope_flags, "cannot get registers: %s\n", strerror(errno));
Bruce Beare6cc49232010-10-13 16:11:15 -070036 return;
37 }
Elliott Hughes18ddd422013-11-14 17:06:46 -080038 _LOG(log, scope_flags, " eax %08lx ebx %08lx ecx %08lx edx %08lx\n",
Bruce Beare6cc49232010-10-13 16:11:15 -070039 r.eax, r.ebx, r.ecx, r.edx);
Elliott Hughes18ddd422013-11-14 17:06:46 -080040 _LOG(log, scope_flags, " esi %08lx edi %08lx\n",
Bruce Beare6cc49232010-10-13 16:11:15 -070041 r.esi, r.edi);
Christopher Ferris365e4ae2013-10-02 12:26:48 -070042 _LOG(log, scope_flags, " xcs %08x xds %08x xes %08x xfs %08x xss %08x\n",
Bruce Beare6cc49232010-10-13 16:11:15 -070043 r.xcs, r.xds, r.xes, r.xfs, r.xss);
Elliott Hughes18ddd422013-11-14 17:06:46 -080044 _LOG(log, scope_flags, " eip %08lx ebp %08lx esp %08lx flags %08lx\n",
Bruce Beare6cc49232010-10-13 16:11:15 -070045 r.eip, r.ebp, r.esp, r.eflags);
46}