blob: cd01188c3a76f34a6aa135b9a47ea43817e611cc [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 Hughesb40c5032014-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 Hughesb40c5032014-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 Hughesb40c5032014-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
Christopher Ferris9818bd22016-05-03 16:32:13 -070024#include <string>
25
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070026#include <backtrace/Backtrace.h>
27
Michael Wright80f59692014-06-20 16:19:58 -070028// Figure out the abi based on defined macros.
29#if defined(__arm__)
30#define ABI_STRING "arm"
31#elif defined(__aarch64__)
32#define ABI_STRING "arm64"
Douglas Leung2ea9a322015-03-09 18:41:32 -070033#elif defined(__mips__) && !defined(__LP64__)
Michael Wright80f59692014-06-20 16:19:58 -070034#define ABI_STRING "mips"
Douglas Leung2ea9a322015-03-09 18:41:32 -070035#elif defined(__mips__) && defined(__LP64__)
36#define ABI_STRING "mips64"
Michael Wright80f59692014-06-20 16:19:58 -070037#elif defined(__i386__)
38#define ABI_STRING "x86"
39#elif defined(__x86_64__)
40#define ABI_STRING "x86_64"
41#else
42#error "Unsupported ABI"
43#endif
44
45
Brigid Smithc75a02f2014-07-17 14:52:33 -070046struct log_t{
Christopher Ferris9818bd22016-05-03 16:32:13 -070047 // Tombstone file descriptor.
Jeff Brown053b8652012-06-06 16:25:03 -070048 int tfd;
Christopher Ferris9818bd22016-05-03 16:32:13 -070049 // Data to be sent to the Activity Manager.
50 std::string* amfd_data;
Brigid Smith62ba4892014-06-10 11:53:08 -070051 // The tid of the thread that crashed.
52 pid_t crashed_tid;
53 // The tid of the thread we are currently working with.
54 pid_t current_tid;
Mark Salyzyn45ae4462014-07-25 12:25:48 -070055 // logd daemon crash, can block asking for logcat data, allow suppression.
56 bool should_retrieve_logcat;
Brigid Smithc75a02f2014-07-17 14:52:33 -070057
58 log_t()
Christopher Ferris9818bd22016-05-03 16:32:13 -070059 : tfd(-1), amfd_data(nullptr), crashed_tid(-1), current_tid(-1),
60 should_retrieve_logcat(true) {}
Brigid Smithc75a02f2014-07-17 14:52:33 -070061};
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062
Brigid Smith62ba4892014-06-10 11:53:08 -070063// List of types of logs to simplify the logging decision in _LOG
64enum logtype {
Brigid Smith62ba4892014-06-10 11:53:08 -070065 HEADER,
66 THREAD,
67 REGISTERS,
Elliott Hughesb40c5032014-07-14 16:10:15 -070068 FP_REGISTERS,
Brigid Smith62ba4892014-06-10 11:53:08 -070069 BACKTRACE,
70 MAPS,
71 MEMORY,
72 STACK,
73 LOGS
74};
75
Christopher Ferris1072f912014-10-31 21:34:38 -070076// Log information onto the tombstone.
Brigid Smith62ba4892014-06-10 11:53:08 -070077void _LOG(log_t* log, logtype ltype, const char *fmt, ...)
Jeff Brown13e715b2011-10-21 12:14:56 -070078 __attribute__ ((format(printf, 3, 4)));
Andy McFadden136dcc52011-09-22 16:37:06 -070079
Josh Gao7c89f9e2016-01-13 17:57:14 -080080int wait_for_signal(pid_t tid, int* total_sleep_time_usec);
Jeff Brown13e715b2011-10-21 12:14:56 -070081
Christopher Ferrise8bc77e2015-05-22 14:26:13 -070082void dump_memory(log_t* log, Backtrace* backtrace, uintptr_t addr, const char* fmt, ...);
Kévin PETIT4bb47722013-12-18 16:44:24 +000083
Jeff Brown13e715b2011-10-21 12:14:56 -070084#endif // _DEBUGGERD_UTILITY_H