The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* 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 Brown | 13e715b | 2011-10-21 12:14:56 -0700 | [diff] [blame] | 18 | #ifndef _DEBUGGERD_UTILITY_H |
| 19 | #define _DEBUGGERD_UTILITY_H |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 20 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 21 | #include <stdbool.h> |
Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 22 | #include <sys/types.h> |
Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 23 | |
| 24 | typedef struct { |
| 25 | /* tombstone file descriptor */ |
| 26 | int tfd; |
Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 27 | /* Activity Manager socket file descriptor */ |
| 28 | int amfd; |
| 29 | /* if true, does not log anything to the Android logcat or Activity Manager */ |
Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 30 | bool quiet; |
| 31 | } log_t; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 32 | |
Christopher Tate | 7716aef | 2013-04-02 14:00:27 -0700 | [diff] [blame] | 33 | /* Log information onto the tombstone. scopeFlags is a bitmask of the flags defined |
| 34 | * here. */ |
| 35 | void _LOG(log_t* log, int scopeFlags, const char *fmt, ...) |
Jeff Brown | 13e715b | 2011-10-21 12:14:56 -0700 | [diff] [blame] | 36 | __attribute__ ((format(printf, 3, 4))); |
Andy McFadden | 136dcc5 | 2011-09-22 16:37:06 -0700 | [diff] [blame] | 37 | |
Christopher Tate | 7716aef | 2013-04-02 14:00:27 -0700 | [diff] [blame] | 38 | /* The message pertains specifically to the faulting thread / process */ |
| 39 | #define SCOPE_AT_FAULT (1 << 0) |
| 40 | /* The message contains sensitive information such as RAM contents */ |
| 41 | #define SCOPE_SENSITIVE (1 << 1) |
| 42 | |
| 43 | #define IS_AT_FAULT(x) (((x) & SCOPE_AT_FAULT) != 0) |
| 44 | #define IS_SENSITIVE(x) (((x) & SCOPE_SENSITIVE) != 0) |
| 45 | |
| 46 | /* Further helpful macros */ |
| 47 | #define LOG(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt) |
David 'Digit' Turner | 2c25991 | 2011-01-26 15:11:04 +0100 | [diff] [blame] | 48 | |
| 49 | /* Set to 1 for normal debug traces */ |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 50 | #if 0 |
Christopher Tate | 7716aef | 2013-04-02 14:00:27 -0700 | [diff] [blame] | 51 | #define XLOG(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt) |
Bruce Beare | 8492490 | 2010-10-13 14:21:30 -0700 | [diff] [blame] | 52 | #else |
| 53 | #define XLOG(fmt...) do {} while(0) |
| 54 | #endif |
| 55 | |
David 'Digit' Turner | 2c25991 | 2011-01-26 15:11:04 +0100 | [diff] [blame] | 56 | /* Set to 1 for chatty debug traces. Includes all resolved dynamic symbols */ |
| 57 | #if 0 |
Christopher Tate | 7716aef | 2013-04-02 14:00:27 -0700 | [diff] [blame] | 58 | #define XLOG2(fmt...) _LOG(NULL, SCOPE_AT_FAULT, fmt) |
David 'Digit' Turner | 2c25991 | 2011-01-26 15:11:04 +0100 | [diff] [blame] | 59 | #else |
| 60 | #define XLOG2(fmt...) do {} while(0) |
| 61 | #endif |
| 62 | |
Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 63 | int wait_for_signal(pid_t tid, int* total_sleep_time_usec); |
| 64 | void wait_for_stop(pid_t tid, int* total_sleep_time_usec); |
Jeff Brown | 13e715b | 2011-10-21 12:14:56 -0700 | [diff] [blame] | 65 | |
Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 66 | void dump_memory(log_t* log, pid_t tid, uintptr_t addr, int scope_flags); |
| 67 | |
Jeff Brown | 13e715b | 2011-10-21 12:14:56 -0700 | [diff] [blame] | 68 | #endif // _DEBUGGERD_UTILITY_H |