blob: fdfb2ec65df55eadcc2f71a7dff4b99ca7306cdd [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**
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*/
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
24typedef struct {
25 /* tombstone file descriptor */
26 int tfd;
Christopher Tateded2e5a2013-03-19 13:12:23 -070027 /* Activity Manager socket file descriptor */
28 int amfd;
29 /* if true, does not log anything to the Android logcat or Activity Manager */
Jeff Brown053b8652012-06-06 16:25:03 -070030 bool quiet;
Brigid Smith62ba4892014-06-10 11:53:08 -070031 // The tid of the thread that crashed.
32 pid_t crashed_tid;
33 // The tid of the thread we are currently working with.
34 pid_t current_tid;
Jeff Brown053b8652012-06-06 16:25:03 -070035} log_t;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080036
Brigid Smith62ba4892014-06-10 11:53:08 -070037// List of types of logs to simplify the logging decision in _LOG
38enum logtype {
39 ERROR,
40 HEADER,
41 THREAD,
42 REGISTERS,
43 BACKTRACE,
44 MAPS,
45 MEMORY,
46 STACK,
47 LOGS
48};
49
50/* Log information onto the tombstone. */
51void _LOG(log_t* log, logtype ltype, const char *fmt, ...)
Jeff Brown13e715b2011-10-21 12:14:56 -070052 __attribute__ ((format(printf, 3, 4)));
Andy McFadden136dcc52011-09-22 16:37:06 -070053
Christopher Tate7716aef2013-04-02 14:00:27 -070054/* Further helpful macros */
Brigid Smith62ba4892014-06-10 11:53:08 -070055#define LOG_ERROR(fmt...) _LOG(NULL, logtype::ERROR, fmt)
Bruce Beare84924902010-10-13 14:21:30 -070056#define XLOG(fmt...) do {} while(0)
David 'Digit' Turner2c259912011-01-26 15:11:04 +010057
Jeff Brown053b8652012-06-06 16:25:03 -070058int wait_for_signal(pid_t tid, int* total_sleep_time_usec);
59void wait_for_stop(pid_t tid, int* total_sleep_time_usec);
Jeff Brown13e715b2011-10-21 12:14:56 -070060
Brigid Smith62ba4892014-06-10 11:53:08 -070061void dump_memory(log_t* log, pid_t tid, uintptr_t addr);
Kévin PETIT4bb47722013-12-18 16:44:24 +000062
Jeff Brown13e715b2011-10-21 12:14:56 -070063#endif // _DEBUGGERD_UTILITY_H