blob: 58a882c2bdced7273e14a4cd8bf370aeb9606161 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/* system/debuggerd/utility.h
2**
3** Copyright 2008, The Android Open Source Project
4**
Elliott Hughesaae5d432014-07-14 16:10:15 -07005** 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
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08008**
Elliott Hughesaae5d432014-07-14 16:10:15 -07009** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080010**
Elliott Hughesaae5d432014-07-14 16:10:15 -070011** 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
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080015** limitations under the License.
16*/
17
Jeff Brown13e715b2011-10-21 12:14:56 -070018#ifndef _DEBUGGERD_UTILITY_H
19#define _DEBUGGERD_UTILITY_H
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080020
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080021#include <stdbool.h>
Pavel Chupinc6c194c2013-11-21 23:17:20 +040022#include <sys/types.h>
Jeff Brown053b8652012-06-06 16:25:03 -070023
Michael Wright80f59692014-06-20 16:19:58 -070024// Figure out the abi based on defined macros.
25#if defined(__arm__)
26#define ABI_STRING "arm"
27#elif defined(__aarch64__)
28#define ABI_STRING "arm64"
29#elif defined(__mips__)
30#define ABI_STRING "mips"
31#elif defined(__i386__)
32#define ABI_STRING "x86"
33#elif defined(__x86_64__)
34#define ABI_STRING "x86_64"
35#else
36#error "Unsupported ABI"
37#endif
38
39
Brigid Smith166cfe62014-07-17 14:52:33 -070040struct log_t{
Jeff Brown053b8652012-06-06 16:25:03 -070041 /* tombstone file descriptor */
42 int tfd;
Christopher Tateded2e5a2013-03-19 13:12:23 -070043 /* Activity Manager socket file descriptor */
44 int amfd;
Brigid Smith62ba4892014-06-10 11:53:08 -070045 // The tid of the thread that crashed.
46 pid_t crashed_tid;
47 // The tid of the thread we are currently working with.
48 pid_t current_tid;
Mark Salyzyn2f2e79d2014-07-25 12:25:48 -070049 // logd daemon crash, can block asking for logcat data, allow suppression.
50 bool should_retrieve_logcat;
Brigid Smith166cfe62014-07-17 14:52:33 -070051
52 log_t()
Mark Salyzyn2f2e79d2014-07-25 12:25:48 -070053 : tfd(-1), amfd(-1), crashed_tid(-1), current_tid(-1), should_retrieve_logcat(true) {}
Brigid Smith166cfe62014-07-17 14:52:33 -070054};
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055
Brigid Smith62ba4892014-06-10 11:53:08 -070056// List of types of logs to simplify the logging decision in _LOG
57enum logtype {
58 ERROR,
59 HEADER,
60 THREAD,
61 REGISTERS,
Elliott Hughesaae5d432014-07-14 16:10:15 -070062 FP_REGISTERS,
Brigid Smith62ba4892014-06-10 11:53:08 -070063 BACKTRACE,
64 MAPS,
65 MEMORY,
66 STACK,
67 LOGS
68};
69
Christopher Ferris84ddb342014-10-31 21:34:38 -070070// Log information onto the tombstone.
Brigid Smith62ba4892014-06-10 11:53:08 -070071void _LOG(log_t* log, logtype ltype, const char *fmt, ...)
Jeff Brown13e715b2011-10-21 12:14:56 -070072 __attribute__ ((format(printf, 3, 4)));
Andy McFadden136dcc52011-09-22 16:37:06 -070073
Christopher Ferris84ddb342014-10-31 21:34:38 -070074int wait_for_sigstop(pid_t, int*, bool*);
Jeff Brown13e715b2011-10-21 12:14:56 -070075
Brigid Smith62ba4892014-06-10 11:53:08 -070076void dump_memory(log_t* log, pid_t tid, uintptr_t addr);
Kévin PETIT4bb47722013-12-18 16:44:24 +000077
Jeff Brown13e715b2011-10-21 12:14:56 -070078#endif // _DEBUGGERD_UTILITY_H