| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 1 | /* | 
| Mark Salyzyn | fca0bd1 | 2013-12-12 12:21:20 -0800 | [diff] [blame] | 2 | * Copyright (C) 2012-2014 The Android Open Source Project | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 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 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 17 | #define LOG_TAG "DEBUG" | 
|  | 18 |  | 
| Elliott Hughes | c184d56 | 2014-12-18 15:47:09 -0800 | [diff] [blame] | 19 | #include <arpa/inet.h> | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 20 | #include <dirent.h> | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 21 | #include <errno.h> | 
|  | 22 | #include <fcntl.h> | 
|  | 23 | #include <inttypes.h> | 
|  | 24 | #include <signal.h> | 
|  | 25 | #include <stddef.h> | 
|  | 26 | #include <stdio.h> | 
|  | 27 | #include <stdlib.h> | 
|  | 28 | #include <string.h> | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 29 | #include <time.h> | 
|  | 30 | #include <sys/ptrace.h> | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 31 | #include <sys/socket.h> | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 32 | #include <sys/stat.h> | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 33 | #include <sys/un.h> | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 34 |  | 
| Christopher Ferris | 6e96403 | 2015-05-15 17:30:21 -0700 | [diff] [blame] | 35 | #include <memory> | 
|  | 36 | #include <string> | 
|  | 37 |  | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 38 | #include <private/android_filesystem_config.h> | 
|  | 39 |  | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 40 | #include <base/stringprintf.h> | 
| Mark Salyzyn | 989980c | 2014-05-14 12:37:22 -0700 | [diff] [blame] | 41 | #include <cutils/properties.h> | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 42 | #include <log/log.h> | 
| Colin Cross | 9227bd3 | 2013-07-23 16:59:20 -0700 | [diff] [blame] | 43 | #include <log/logger.h> | 
| Mark Salyzyn | 989980c | 2014-05-14 12:37:22 -0700 | [diff] [blame] | 44 | #include <log/logprint.h> | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 45 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 46 | #include <backtrace/Backtrace.h> | 
| Christopher Ferris | 4675682 | 2014-01-14 20:16:30 -0800 | [diff] [blame] | 47 | #include <backtrace/BacktraceMap.h> | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 48 |  | 
| rpcraig | f1186f3 | 2012-07-19 09:38:06 -0400 | [diff] [blame] | 49 | #include <selinux/android.h> | 
| rpcraig | f1186f3 | 2012-07-19 09:38:06 -0400 | [diff] [blame] | 50 |  | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 51 | #include "backtrace.h" | 
|  | 52 | #include "elf_utils.h" | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 53 | #include "machine.h" | 
|  | 54 | #include "tombstone.h" | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 55 |  | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 56 | #define STACK_WORDS 16 | 
|  | 57 |  | 
|  | 58 | #define MAX_TOMBSTONES  10 | 
|  | 59 | #define TOMBSTONE_DIR   "/data/tombstones" | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 60 | #define TOMBSTONE_TEMPLATE (TOMBSTONE_DIR"/tombstone_%02d") | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 61 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 62 | // Must match the path defined in NativeCrashListener.java | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 63 | #define NCRASH_SOCKET_PATH "/data/system/ndebugsocket" | 
|  | 64 |  | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 65 | static bool signal_has_si_addr(int sig) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 66 | switch (sig) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 67 | case SIGBUS: | 
| Elliott Hughes | a323b50 | 2014-05-16 21:12:17 -0700 | [diff] [blame] | 68 | case SIGFPE: | 
|  | 69 | case SIGILL: | 
|  | 70 | case SIGSEGV: | 
| Dmitriy Ivanov | f10aa3a | 2014-08-08 16:30:13 -0700 | [diff] [blame] | 71 | case SIGTRAP: | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 72 | return true; | 
|  | 73 | default: | 
|  | 74 | return false; | 
|  | 75 | } | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | static const char* get_signame(int sig) { | 
|  | 79 | switch(sig) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 80 | case SIGABRT: return "SIGABRT"; | 
|  | 81 | case SIGBUS: return "SIGBUS"; | 
|  | 82 | case SIGFPE: return "SIGFPE"; | 
| Elliott Hughes | a323b50 | 2014-05-16 21:12:17 -0700 | [diff] [blame] | 83 | case SIGILL: return "SIGILL"; | 
| Elliott Hughes | a323b50 | 2014-05-16 21:12:17 -0700 | [diff] [blame] | 84 | case SIGSEGV: return "SIGSEGV"; | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 85 | #if defined(SIGSTKFLT) | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 86 | case SIGSTKFLT: return "SIGSTKFLT"; | 
|  | 87 | #endif | 
|  | 88 | case SIGSTOP: return "SIGSTOP"; | 
| Elliott Hughes | a323b50 | 2014-05-16 21:12:17 -0700 | [diff] [blame] | 89 | case SIGTRAP: return "SIGTRAP"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 90 | default: return "?"; | 
|  | 91 | } | 
|  | 92 | } | 
|  | 93 |  | 
|  | 94 | static const char* get_sigcode(int signo, int code) { | 
|  | 95 | // Try the signal-specific codes... | 
|  | 96 | switch (signo) { | 
|  | 97 | case SIGILL: | 
|  | 98 | switch (code) { | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 99 | case ILL_ILLOPC: return "ILL_ILLOPC"; | 
|  | 100 | case ILL_ILLOPN: return "ILL_ILLOPN"; | 
|  | 101 | case ILL_ILLADR: return "ILL_ILLADR"; | 
|  | 102 | case ILL_ILLTRP: return "ILL_ILLTRP"; | 
|  | 103 | case ILL_PRVOPC: return "ILL_PRVOPC"; | 
|  | 104 | case ILL_PRVREG: return "ILL_PRVREG"; | 
|  | 105 | case ILL_COPROC: return "ILL_COPROC"; | 
|  | 106 | case ILL_BADSTK: return "ILL_BADSTK"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 107 | } | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 108 | static_assert(NSIGILL == ILL_BADSTK, "missing ILL_* si_code"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 109 | break; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 110 | case SIGBUS: | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 111 | switch (code) { | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 112 | case BUS_ADRALN: return "BUS_ADRALN"; | 
|  | 113 | case BUS_ADRERR: return "BUS_ADRERR"; | 
|  | 114 | case BUS_OBJERR: return "BUS_OBJERR"; | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 115 | case BUS_MCEERR_AR: return "BUS_MCEERR_AR"; | 
|  | 116 | case BUS_MCEERR_AO: return "BUS_MCEERR_AO"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 117 | } | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 118 | static_assert(NSIGBUS == BUS_MCEERR_AO, "missing BUS_* si_code"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 119 | break; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 120 | case SIGFPE: | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 121 | switch (code) { | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 122 | case FPE_INTDIV: return "FPE_INTDIV"; | 
|  | 123 | case FPE_INTOVF: return "FPE_INTOVF"; | 
|  | 124 | case FPE_FLTDIV: return "FPE_FLTDIV"; | 
|  | 125 | case FPE_FLTOVF: return "FPE_FLTOVF"; | 
|  | 126 | case FPE_FLTUND: return "FPE_FLTUND"; | 
|  | 127 | case FPE_FLTRES: return "FPE_FLTRES"; | 
|  | 128 | case FPE_FLTINV: return "FPE_FLTINV"; | 
|  | 129 | case FPE_FLTSUB: return "FPE_FLTSUB"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 130 | } | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 131 | static_assert(NSIGFPE == FPE_FLTSUB, "missing FPE_* si_code"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 132 | break; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 133 | case SIGSEGV: | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 134 | switch (code) { | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 135 | case SEGV_MAPERR: return "SEGV_MAPERR"; | 
|  | 136 | case SEGV_ACCERR: return "SEGV_ACCERR"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 137 | } | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 138 | static_assert(NSIGSEGV == SEGV_ACCERR, "missing SEGV_* si_code"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 139 | break; | 
| Elliott Hughes | 8f7d443 | 2012-12-10 10:29:05 -0800 | [diff] [blame] | 140 | case SIGTRAP: | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 141 | switch (code) { | 
| Elliott Hughes | 8f7d443 | 2012-12-10 10:29:05 -0800 | [diff] [blame] | 142 | case TRAP_BRKPT: return "TRAP_BRKPT"; | 
|  | 143 | case TRAP_TRACE: return "TRAP_TRACE"; | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 144 | case TRAP_BRANCH: return "TRAP_BRANCH"; | 
|  | 145 | case TRAP_HWBKPT: return "TRAP_HWBKPT"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 146 | } | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 147 | static_assert(NSIGTRAP == TRAP_HWBKPT, "missing TRAP_* si_code"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 148 | break; | 
|  | 149 | } | 
|  | 150 | // Then the other codes... | 
|  | 151 | switch (code) { | 
|  | 152 | case SI_USER: return "SI_USER"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 153 | case SI_KERNEL: return "SI_KERNEL"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 154 | case SI_QUEUE: return "SI_QUEUE"; | 
|  | 155 | case SI_TIMER: return "SI_TIMER"; | 
|  | 156 | case SI_MESGQ: return "SI_MESGQ"; | 
| Elliott Hughes | 8f7d443 | 2012-12-10 10:29:05 -0800 | [diff] [blame] | 157 | case SI_ASYNCIO: return "SI_ASYNCIO"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 158 | case SI_SIGIO: return "SI_SIGIO"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 159 | case SI_TKILL: return "SI_TKILL"; | 
| Elliott Hughes | bd395b9 | 2014-04-24 13:53:22 -0700 | [diff] [blame] | 160 | case SI_DETHREAD: return "SI_DETHREAD"; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 161 | } | 
|  | 162 | // Then give up... | 
|  | 163 | return "?"; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 164 | } | 
|  | 165 |  | 
| Brigid Smith | 9c8dacc | 2014-06-02 15:02:20 -0700 | [diff] [blame] | 166 | static void dump_header_info(log_t* log) { | 
|  | 167 | char fingerprint[PROPERTY_VALUE_MAX]; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 168 | char revision[PROPERTY_VALUE_MAX]; | 
| Ben Cheng | d7760c1 | 2012-09-19 16:04:01 -0700 | [diff] [blame] | 169 |  | 
| Brigid Smith | 9c8dacc | 2014-06-02 15:02:20 -0700 | [diff] [blame] | 170 | property_get("ro.build.fingerprint", fingerprint, "unknown"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 171 | property_get("ro.revision", revision, "unknown"); | 
| Ben Cheng | d7760c1 | 2012-09-19 16:04:01 -0700 | [diff] [blame] | 172 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 173 | _LOG(log, logtype::HEADER, "Build fingerprint: '%s'\n", fingerprint); | 
|  | 174 | _LOG(log, logtype::HEADER, "Revision: '%s'\n", revision); | 
|  | 175 | _LOG(log, logtype::HEADER, "ABI: '%s'\n", ABI_STRING); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 176 | } | 
|  | 177 |  | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 178 | static void dump_signal_info(log_t* log, pid_t tid, int signal, int si_code) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 179 | siginfo_t si; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 180 | memset(&si, 0, sizeof(si)); | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 181 | if (ptrace(PTRACE_GETSIGINFO, tid, 0, &si) == -1) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 182 | ALOGE("cannot get siginfo: %s\n", strerror(errno)); | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 183 | return; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 184 | } | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 185 |  | 
|  | 186 | // bionic has to re-raise some signals, which overwrites the si_code with SI_TKILL. | 
|  | 187 | si.si_code = si_code; | 
|  | 188 |  | 
|  | 189 | char addr_desc[32]; // ", fault addr 0x1234" | 
|  | 190 | if (signal_has_si_addr(signal)) { | 
|  | 191 | snprintf(addr_desc, sizeof(addr_desc), "%p", si.si_addr); | 
|  | 192 | } else { | 
|  | 193 | snprintf(addr_desc, sizeof(addr_desc), "--------"); | 
|  | 194 | } | 
|  | 195 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 196 | _LOG(log, logtype::HEADER, "signal %d (%s), code %d (%s), fault addr %s\n", | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 197 | signal, get_signame(signal), si.si_code, get_sigcode(signal, si.si_code), addr_desc); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 198 | } | 
|  | 199 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 200 | static void dump_thread_info(log_t* log, pid_t pid, pid_t tid) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 201 | char path[64]; | 
|  | 202 | char threadnamebuf[1024]; | 
|  | 203 | char* threadname = NULL; | 
|  | 204 | FILE *fp; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 205 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 206 | snprintf(path, sizeof(path), "/proc/%d/comm", tid); | 
|  | 207 | if ((fp = fopen(path, "r"))) { | 
|  | 208 | threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp); | 
|  | 209 | fclose(fp); | 
|  | 210 | if (threadname) { | 
|  | 211 | size_t len = strlen(threadname); | 
|  | 212 | if (len && threadname[len - 1] == '\n') { | 
|  | 213 | threadname[len - 1] = '\0'; | 
|  | 214 | } | 
|  | 215 | } | 
|  | 216 | } | 
| Mark Salyzyn | 45ae446 | 2014-07-25 12:25:48 -0700 | [diff] [blame] | 217 | // Blacklist logd, logd.reader, logd.writer, logd.auditd, logd.control ... | 
|  | 218 | static const char logd[] = "logd"; | 
|  | 219 | if (!strncmp(threadname, logd, sizeof(logd) - 1) | 
|  | 220 | && (!threadname[sizeof(logd) - 1] || (threadname[sizeof(logd) - 1] == '.'))) { | 
|  | 221 | log->should_retrieve_logcat = false; | 
|  | 222 | } | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 223 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 224 | char procnamebuf[1024]; | 
|  | 225 | char* procname = NULL; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 226 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 227 | snprintf(path, sizeof(path), "/proc/%d/cmdline", pid); | 
|  | 228 | if ((fp = fopen(path, "r"))) { | 
|  | 229 | procname = fgets(procnamebuf, sizeof(procnamebuf), fp); | 
|  | 230 | fclose(fp); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 231 | } | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 232 |  | 
| Brigid Smith | f473200 | 2014-06-23 11:03:40 -0700 | [diff] [blame] | 233 | _LOG(log, logtype::HEADER, "pid: %d, tid: %d, name: %s  >>> %s <<<\n", pid, tid, | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 234 | threadname ? threadname : "UNKNOWN", procname ? procname : "UNKNOWN"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 235 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 236 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 237 | static void dump_stack_segment( | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 238 | Backtrace* backtrace, log_t* log, uintptr_t* sp, size_t words, int label) { | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 239 | // Read the data all at once. | 
|  | 240 | word_t stack_data[words]; | 
|  | 241 | size_t bytes_read = backtrace->Read(*sp, reinterpret_cast<uint8_t*>(&stack_data[0]), sizeof(word_t) * words); | 
|  | 242 | words = bytes_read / sizeof(word_t); | 
|  | 243 | std::string line; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 244 | for (size_t i = 0; i < words; i++) { | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 245 | line = "    "; | 
|  | 246 | if (i == 0 && label >= 0) { | 
|  | 247 | // Print the label once. | 
|  | 248 | line += android::base::StringPrintf("#%02d  ", label); | 
|  | 249 | } else { | 
|  | 250 | line += "     "; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 251 | } | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 252 | line += android::base::StringPrintf("%" PRIPTR "  %" PRIPTR, *sp, stack_data[i]); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 253 |  | 
| Christopher Ferris | 12385e3 | 2015-02-06 13:22:01 -0800 | [diff] [blame] | 254 | backtrace_map_t map; | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 255 | backtrace->FillInMap(stack_data[i], &map); | 
|  | 256 | if (BacktraceMap::IsValid(map) && !map.name.empty()) { | 
|  | 257 | line += "  " + map.name; | 
|  | 258 | uintptr_t offset = 0; | 
|  | 259 | std::string func_name(backtrace->GetFunctionName(stack_data[i], &offset)); | 
|  | 260 | if (!func_name.empty()) { | 
|  | 261 | line += " (" + func_name; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 262 | if (offset) { | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 263 | line += android::base::StringPrintf("+%" PRIuPTR, offset); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 264 | } | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 265 | line += ')'; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 266 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 267 | } | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 268 | _LOG(log, logtype::STACK, "%s\n", line.c_str()); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 269 |  | 
| Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 270 | *sp += sizeof(word_t); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 271 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 272 | } | 
|  | 273 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 274 | static void dump_stack(Backtrace* backtrace, log_t* log) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 275 | size_t first = 0, last; | 
|  | 276 | for (size_t i = 0; i < backtrace->NumFrames(); i++) { | 
|  | 277 | const backtrace_frame_data_t* frame = backtrace->GetFrame(i); | 
|  | 278 | if (frame->sp) { | 
|  | 279 | if (!first) { | 
|  | 280 | first = i+1; | 
|  | 281 | } | 
|  | 282 | last = i; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 283 | } | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 284 | } | 
|  | 285 | if (!first) { | 
|  | 286 | return; | 
|  | 287 | } | 
|  | 288 | first--; | 
|  | 289 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 290 | // Dump a few words before the first frame. | 
| Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 291 | word_t sp = backtrace->GetFrame(first)->sp - STACK_WORDS * sizeof(word_t); | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 292 | dump_stack_segment(backtrace, log, &sp, STACK_WORDS, -1); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 293 |  | 
|  | 294 | // Dump a few words from all successive frames. | 
|  | 295 | // Only log the first 3 frames, put the rest in the tombstone. | 
|  | 296 | for (size_t i = first; i <= last; i++) { | 
|  | 297 | const backtrace_frame_data_t* frame = backtrace->GetFrame(i); | 
|  | 298 | if (sp != frame->sp) { | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 299 | _LOG(log, logtype::STACK, "         ........  ........\n"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 300 | sp = frame->sp; | 
|  | 301 | } | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 302 | if (i == last) { | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 303 | dump_stack_segment(backtrace, log, &sp, STACK_WORDS, i); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 304 | if (sp < frame->sp + frame->stack_size) { | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 305 | _LOG(log, logtype::STACK, "         ........  ........\n"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 306 | } | 
|  | 307 | } else { | 
| Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 308 | size_t words = frame->stack_size / sizeof(word_t); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 309 | if (words == 0) { | 
|  | 310 | words = 1; | 
|  | 311 | } else if (words > STACK_WORDS) { | 
|  | 312 | words = STACK_WORDS; | 
|  | 313 | } | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 314 | dump_stack_segment(backtrace, log, &sp, words, i); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 315 | } | 
|  | 316 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 317 | } | 
|  | 318 |  | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 319 | static std::string get_addr_string(uintptr_t addr) { | 
|  | 320 | std::string addr_str; | 
|  | 321 | #if defined(__LP64__) | 
|  | 322 | addr_str = android::base::StringPrintf("%08x'%08x", | 
|  | 323 | static_cast<uint32_t>(addr >> 32), | 
|  | 324 | static_cast<uint32_t>(addr & 0xffffffff)); | 
|  | 325 | #else | 
|  | 326 | addr_str = android::base::StringPrintf("%08x", addr); | 
|  | 327 | #endif | 
|  | 328 | return addr_str; | 
|  | 329 | } | 
|  | 330 |  | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 331 | static void dump_all_maps(Backtrace* backtrace, BacktraceMap* map, log_t* log, pid_t tid) { | 
|  | 332 | bool print_fault_address_marker = false; | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 333 | uintptr_t addr = 0; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 334 | siginfo_t si; | 
|  | 335 | memset(&si, 0, sizeof(si)); | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 336 | if (ptrace(PTRACE_GETSIGINFO, tid, 0, &si) != -1) { | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 337 | print_fault_address_marker = signal_has_si_addr(si.si_signo); | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 338 | addr = reinterpret_cast<uintptr_t>(si.si_addr); | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 339 | } else { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 340 | ALOGE("Cannot get siginfo for %d: %s\n", tid, strerror(errno)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 341 | } | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 342 |  | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 343 | _LOG(log, logtype::MAPS, "\n"); | 
|  | 344 | if (!print_fault_address_marker) { | 
|  | 345 | _LOG(log, logtype::MAPS, "memory map:\n"); | 
|  | 346 | } else { | 
|  | 347 | _LOG(log, logtype::MAPS, "memory map: (fault address prefixed with --->)\n"); | 
|  | 348 | if (map->begin() != map->end() && addr < map->begin()->start) { | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 349 | _LOG(log, logtype::MAPS, "--->Fault address falls at %s before any mapped regions\n", | 
|  | 350 | get_addr_string(addr).c_str()); | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 351 | print_fault_address_marker = false; | 
| Brigid Smith | 8606eaa | 2014-07-07 12:33:50 -0700 | [diff] [blame] | 352 | } | 
| Brigid Smith | 8606eaa | 2014-07-07 12:33:50 -0700 | [diff] [blame] | 353 | } | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 354 |  | 
|  | 355 | std::string line; | 
|  | 356 | for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) { | 
|  | 357 | line = "    "; | 
|  | 358 | if (print_fault_address_marker) { | 
|  | 359 | if (addr < it->start) { | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 360 | _LOG(log, logtype::MAPS, "--->Fault address falls at %s between mapped regions\n", | 
|  | 361 | get_addr_string(addr).c_str()); | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 362 | print_fault_address_marker = false; | 
|  | 363 | } else if (addr >= it->start && addr < it->end) { | 
|  | 364 | line = "--->"; | 
|  | 365 | print_fault_address_marker = false; | 
|  | 366 | } | 
|  | 367 | } | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 368 | line += get_addr_string(it->start) + '-' + get_addr_string(it->end - 1) + ' '; | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 369 | if (it->flags & PROT_READ) { | 
|  | 370 | line += 'r'; | 
|  | 371 | } else { | 
|  | 372 | line += '-'; | 
|  | 373 | } | 
|  | 374 | if (it->flags & PROT_WRITE) { | 
|  | 375 | line += 'w'; | 
|  | 376 | } else { | 
|  | 377 | line += '-'; | 
|  | 378 | } | 
|  | 379 | if (it->flags & PROT_EXEC) { | 
|  | 380 | line += 'x'; | 
|  | 381 | } else { | 
|  | 382 | line += '-'; | 
|  | 383 | } | 
| Christopher Ferris | 5c88568 | 2015-05-06 12:50:09 -0700 | [diff] [blame] | 384 | line += android::base::StringPrintf("  %8" PRIxPTR "  %8" PRIxPTR, | 
|  | 385 | it->offset, it->end - it->start); | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 386 | bool space_needed = true; | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 387 | if (it->name.length() > 0) { | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 388 | space_needed = false; | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 389 | line += "  " + it->name; | 
|  | 390 | std::string build_id; | 
|  | 391 | if ((it->flags & PROT_READ) && elf_get_build_id(backtrace, it->start, &build_id)) { | 
|  | 392 | line += " (BuildId: " + build_id + ")"; | 
|  | 393 | } | 
|  | 394 | } | 
| Christopher Ferris | 2106f4b | 2015-05-01 15:02:03 -0700 | [diff] [blame] | 395 | if (it->load_base != 0) { | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 396 | if (space_needed) { | 
|  | 397 | line += ' '; | 
|  | 398 | } | 
| Christopher Ferris | 2106f4b | 2015-05-01 15:02:03 -0700 | [diff] [blame] | 399 | line += android::base::StringPrintf(" (load base 0x%" PRIxPTR ")", it->load_base); | 
|  | 400 | } | 
| Christopher Ferris | a21bd93 | 2015-02-27 13:39:47 -0800 | [diff] [blame] | 401 | _LOG(log, logtype::MAPS, "%s\n", line.c_str()); | 
|  | 402 | } | 
|  | 403 | if (print_fault_address_marker) { | 
| Christopher Ferris | 862fe02 | 2015-06-02 14:52:44 -0700 | [diff] [blame] | 404 | _LOG(log, logtype::MAPS, "--->Fault address falls at %s after any mapped regions\n", | 
|  | 405 | get_addr_string(addr).c_str()); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 406 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 407 | } | 
|  | 408 |  | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 409 | static void dump_backtrace_and_stack(Backtrace* backtrace, log_t* log) { | 
|  | 410 | if (backtrace->NumFrames()) { | 
|  | 411 | _LOG(log, logtype::BACKTRACE, "\nbacktrace:\n"); | 
|  | 412 | dump_backtrace_to_log(backtrace, log, "    "); | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 413 |  | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 414 | _LOG(log, logtype::STACK, "\nstack:\n"); | 
|  | 415 | dump_stack(backtrace, log); | 
|  | 416 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 417 | } | 
|  | 418 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 419 | // Return true if some thread is not detached cleanly | 
| Christopher Ferris | 365e4ae | 2013-10-02 12:26:48 -0700 | [diff] [blame] | 420 | static bool dump_sibling_thread_report( | 
| Christopher Ferris | 4675682 | 2014-01-14 20:16:30 -0800 | [diff] [blame] | 421 | log_t* log, pid_t pid, pid_t tid, int* total_sleep_time_usec, BacktraceMap* map) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 422 | char task_path[64]; | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 423 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 424 | snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 425 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 426 | DIR* d = opendir(task_path); | 
|  | 427 | // Bail early if the task directory cannot be opened | 
|  | 428 | if (d == NULL) { | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 429 | ALOGE("Cannot open /proc/%d/task\n", pid); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 430 | return false; | 
|  | 431 | } | 
|  | 432 |  | 
|  | 433 | bool detach_failed = false; | 
|  | 434 | struct dirent* de; | 
|  | 435 | while ((de = readdir(d)) != NULL) { | 
|  | 436 | // Ignore "." and ".." | 
|  | 437 | if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) { | 
|  | 438 | continue; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 439 | } | 
|  | 440 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 441 | // The main thread at fault has been handled individually | 
|  | 442 | char* end; | 
|  | 443 | pid_t new_tid = strtoul(de->d_name, &end, 10); | 
|  | 444 | if (*end || new_tid == tid) { | 
|  | 445 | continue; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 446 | } | 
|  | 447 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 448 | // Skip this thread if cannot ptrace it | 
|  | 449 | if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 450 | ALOGE("ptrace attach to %d failed: %s\n", new_tid, strerror(errno)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 451 | continue; | 
|  | 452 | } | 
|  | 453 |  | 
| Christopher Ferris | 1072f91 | 2014-10-31 21:34:38 -0700 | [diff] [blame] | 454 | if (wait_for_sigstop(new_tid, total_sleep_time_usec, &detach_failed) == -1) { | 
|  | 455 | continue; | 
|  | 456 | } | 
|  | 457 |  | 
| Brigid Smith | f473200 | 2014-06-23 11:03:40 -0700 | [diff] [blame] | 458 | log->current_tid = new_tid; | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 459 | _LOG(log, logtype::THREAD, "--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---\n"); | 
|  | 460 | dump_thread_info(log, pid, new_tid); | 
|  | 461 |  | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 462 | dump_registers(log, new_tid); | 
| Christopher Ferris | 6e96403 | 2015-05-15 17:30:21 -0700 | [diff] [blame] | 463 | std::unique_ptr<Backtrace> backtrace(Backtrace::Create(pid, new_tid, map)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 464 | if (backtrace->Unwind(0)) { | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 465 | dump_backtrace_and_stack(backtrace.get(), log); | 
| Christopher Ferris | 30c942c | 2015-05-14 15:39:52 -0700 | [diff] [blame] | 466 | } else { | 
|  | 467 | ALOGE("Unwind of sibling failed: pid = %d, tid = %d", pid, new_tid); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 468 | } | 
|  | 469 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 470 | log->current_tid = log->crashed_tid; | 
|  | 471 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 472 | if (ptrace(PTRACE_DETACH, new_tid, 0, 0) != 0) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 473 | ALOGE("ptrace detach from %d failed: %s\n", new_tid, strerror(errno)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 474 | detach_failed = true; | 
|  | 475 | } | 
|  | 476 | } | 
|  | 477 |  | 
|  | 478 | closedir(d); | 
|  | 479 | return detach_failed; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 480 | } | 
|  | 481 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 482 | // Reads the contents of the specified log device, filters out the entries | 
|  | 483 | // that don't match the specified pid, and writes them to the tombstone file. | 
|  | 484 | // | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 485 | // If "tail" is non-zero, log the last "tail" number of lines. | 
| Mark Salyzyn | 989980c | 2014-05-14 12:37:22 -0700 | [diff] [blame] | 486 | static EventTagMap* g_eventTagMap = NULL; | 
|  | 487 |  | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 488 | static void dump_log_file( | 
|  | 489 | log_t* log, pid_t pid, const char* filename, unsigned int tail) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 490 | bool first = true; | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 491 | struct logger_list* logger_list; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 492 |  | 
| Mark Salyzyn | 45ae446 | 2014-07-25 12:25:48 -0700 | [diff] [blame] | 493 | if (!log->should_retrieve_logcat) { | 
|  | 494 | return; | 
|  | 495 | } | 
|  | 496 |  | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 497 | logger_list = android_logger_list_open( | 
| Mark Salyzyn | 2d3f38a | 2015-01-26 10:46:44 -0800 | [diff] [blame] | 498 | android_name_to_log_id(filename), ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, tail, pid); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 499 |  | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 500 | if (!logger_list) { | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 501 | ALOGE("Unable to open %s: %s\n", filename, strerror(errno)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 502 | return; | 
|  | 503 | } | 
|  | 504 |  | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 505 | struct log_msg log_entry; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 506 |  | 
|  | 507 | while (true) { | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 508 | ssize_t actual = android_logger_list_read(logger_list, &log_entry); | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 509 | struct logger_entry* entry; | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 510 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 511 | if (actual < 0) { | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 512 | if (actual == -EINTR) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 513 | // interrupted by signal, retry | 
|  | 514 | continue; | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 515 | } else if (actual == -EAGAIN) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 516 | // non-blocking EOF; we're done | 
|  | 517 | break; | 
|  | 518 | } else { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 519 | ALOGE("Error while reading log: %s\n", strerror(-actual)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 520 | break; | 
|  | 521 | } | 
|  | 522 | } else if (actual == 0) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 523 | ALOGE("Got zero bytes while reading log: %s\n", strerror(errno)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 524 | break; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 525 | } | 
|  | 526 |  | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 527 | // NOTE: if you ALOGV something here, this will spin forever, | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 528 | // because you will be writing as fast as you're reading.  Any | 
|  | 529 | // high-frequency debug diagnostics should just be written to | 
|  | 530 | // the tombstone file. | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 531 |  | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 532 | entry = &log_entry.entry_v1; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 533 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 534 | if (first) { | 
| Mark Salyzyn | e43290d | 2014-06-27 10:32:22 -0700 | [diff] [blame] | 535 | _LOG(log, logtype::LOGS, "--------- %slog %s\n", | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 536 | tail ? "tail end of " : "", filename); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 537 | first = false; | 
|  | 538 | } | 
|  | 539 |  | 
|  | 540 | // Msg format is: <priority:1><tag:N>\0<message:N>\0 | 
|  | 541 | // | 
|  | 542 | // We want to display it in the same format as "logcat -v threadtime" | 
|  | 543 | // (although in this case the pid is redundant). | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 544 | static const char* kPrioChars = "!.VDIWEFS"; | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 545 | unsigned hdr_size = log_entry.entry.hdr_size; | 
|  | 546 | if (!hdr_size) { | 
|  | 547 | hdr_size = sizeof(log_entry.entry_v1); | 
|  | 548 | } | 
| Mark Salyzyn | 989980c | 2014-05-14 12:37:22 -0700 | [diff] [blame] | 549 | char* msg = reinterpret_cast<char*>(log_entry.buf) + hdr_size; | 
|  | 550 |  | 
|  | 551 | char timeBuf[32]; | 
|  | 552 | time_t sec = static_cast<time_t>(entry->sec); | 
|  | 553 | struct tm tmBuf; | 
|  | 554 | struct tm* ptm; | 
|  | 555 | ptm = localtime_r(&sec, &tmBuf); | 
|  | 556 | strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm); | 
|  | 557 |  | 
|  | 558 | if (log_entry.id() == LOG_ID_EVENTS) { | 
|  | 559 | if (!g_eventTagMap) { | 
|  | 560 | g_eventTagMap = android_openEventTagMap(EVENT_TAG_MAP_FILE); | 
|  | 561 | } | 
|  | 562 | AndroidLogEntry e; | 
|  | 563 | char buf[512]; | 
|  | 564 | android_log_processBinaryLogBuffer(entry, &e, g_eventTagMap, buf, sizeof(buf)); | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 565 | _LOG(log, logtype::LOGS, "%s.%03d %5d %5d %c %-8s: %s\n", | 
| Mark Salyzyn | 989980c | 2014-05-14 12:37:22 -0700 | [diff] [blame] | 566 | timeBuf, entry->nsec / 1000000, entry->pid, entry->tid, | 
|  | 567 | 'I', e.tag, e.message); | 
|  | 568 | continue; | 
|  | 569 | } | 
|  | 570 |  | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 571 | unsigned char prio = msg[0]; | 
|  | 572 | char* tag = msg + 1; | 
|  | 573 | msg = tag + strlen(tag) + 1; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 574 |  | 
|  | 575 | // consume any trailing newlines | 
| Mark Salyzyn | fca0bd1 | 2013-12-12 12:21:20 -0800 | [diff] [blame] | 576 | char* nl = msg + strlen(msg) - 1; | 
|  | 577 | while (nl >= msg && *nl == '\n') { | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 578 | *nl-- = '\0'; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 579 | } | 
|  | 580 |  | 
|  | 581 | char prioChar = (prio < strlen(kPrioChars) ? kPrioChars[prio] : '?'); | 
|  | 582 |  | 
| Mark Salyzyn | fca0bd1 | 2013-12-12 12:21:20 -0800 | [diff] [blame] | 583 | // Look for line breaks ('\n') and display each text line | 
|  | 584 | // on a separate line, prefixed with the header, like logcat does. | 
|  | 585 | do { | 
|  | 586 | nl = strchr(msg, '\n'); | 
|  | 587 | if (nl) { | 
|  | 588 | *nl = '\0'; | 
|  | 589 | ++nl; | 
|  | 590 | } | 
|  | 591 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 592 | _LOG(log, logtype::LOGS, "%s.%03d %5d %5d %c %-8s: %s\n", | 
| Mark Salyzyn | fca0bd1 | 2013-12-12 12:21:20 -0800 | [diff] [blame] | 593 | timeBuf, entry->nsec / 1000000, entry->pid, entry->tid, | 
|  | 594 | prioChar, tag, msg); | 
| Mark Salyzyn | fca0bd1 | 2013-12-12 12:21:20 -0800 | [diff] [blame] | 595 | } while ((msg = nl)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 596 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 597 |  | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 598 | android_logger_list_free(logger_list); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 599 | } | 
|  | 600 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 601 | // Dumps the logs generated by the specified pid to the tombstone, from both | 
|  | 602 | // "system" and "main" log devices.  Ideally we'd interleave the output. | 
| Mark Salyzyn | 17e85c0 | 2014-06-27 15:55:19 -0700 | [diff] [blame] | 603 | static void dump_logs(log_t* log, pid_t pid, unsigned int tail) { | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 604 | dump_log_file(log, pid, "system", tail); | 
|  | 605 | dump_log_file(log, pid, "main", tail); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 606 | } | 
|  | 607 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 608 | static void dump_abort_message(Backtrace* backtrace, log_t* log, uintptr_t address) { | 
| Elliott Hughes | e5f8a69 | 2013-04-04 13:52:01 -0700 | [diff] [blame] | 609 | if (address == 0) { | 
|  | 610 | return; | 
|  | 611 | } | 
|  | 612 |  | 
|  | 613 | address += sizeof(size_t); // Skip the buffer length. | 
|  | 614 |  | 
|  | 615 | char msg[512]; | 
|  | 616 | memset(msg, 0, sizeof(msg)); | 
|  | 617 | char* p = &msg[0]; | 
|  | 618 | while (p < &msg[sizeof(msg)]) { | 
| Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 619 | word_t data; | 
|  | 620 | size_t len = sizeof(word_t); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 621 | if (!backtrace->ReadWord(address, &data)) { | 
| Elliott Hughes | e5f8a69 | 2013-04-04 13:52:01 -0700 | [diff] [blame] | 622 | break; | 
|  | 623 | } | 
| Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 624 | address += sizeof(word_t); | 
| Elliott Hughes | e5f8a69 | 2013-04-04 13:52:01 -0700 | [diff] [blame] | 625 |  | 
| Pavel Chupin | c6c194c | 2013-11-21 23:17:20 +0400 | [diff] [blame] | 626 | while (len > 0 && (*p++ = (data >> (sizeof(word_t) - len) * 8) & 0xff) != 0) | 
|  | 627 | len--; | 
| Elliott Hughes | e5f8a69 | 2013-04-04 13:52:01 -0700 | [diff] [blame] | 628 | } | 
|  | 629 | msg[sizeof(msg) - 1] = '\0'; | 
|  | 630 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 631 | _LOG(log, logtype::HEADER, "Abort message: '%s'\n", msg); | 
| Elliott Hughes | e5f8a69 | 2013-04-04 13:52:01 -0700 | [diff] [blame] | 632 | } | 
|  | 633 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 634 | // Dumps all information about the specified pid to the tombstone. | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 635 | static bool dump_crash(log_t* log, pid_t pid, pid_t tid, int signal, int si_code, | 
|  | 636 | uintptr_t abort_msg_address, bool dump_sibling_threads, | 
|  | 637 | int* total_sleep_time_usec) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 638 | // don't copy log messages to tombstone unless this is a dev device | 
|  | 639 | char value[PROPERTY_VALUE_MAX]; | 
|  | 640 | property_get("ro.debuggable", value, "0"); | 
|  | 641 | bool want_logs = (value[0] == '1'); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 642 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 643 | if (log->amfd >= 0) { | 
|  | 644 | // Activity Manager protocol: binary 32-bit network-byte-order ints for the | 
|  | 645 | // pid and signal number, followed by the raw text of the dump, culminating | 
|  | 646 | // in a zero byte that marks end-of-data. | 
|  | 647 | uint32_t datum = htonl(pid); | 
|  | 648 | TEMP_FAILURE_RETRY( write(log->amfd, &datum, 4) ); | 
|  | 649 | datum = htonl(signal); | 
|  | 650 | TEMP_FAILURE_RETRY( write(log->amfd, &datum, 4) ); | 
|  | 651 | } | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 652 |  | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 653 | _LOG(log, logtype::HEADER, | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 654 | "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n"); | 
| Brigid Smith | 9c8dacc | 2014-06-02 15:02:20 -0700 | [diff] [blame] | 655 | dump_header_info(log); | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 656 | dump_thread_info(log, pid, tid); | 
|  | 657 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 658 | if (signal) { | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 659 | dump_signal_info(log, tid, signal, si_code); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 660 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 661 |  | 
| Christopher Ferris | 6e96403 | 2015-05-15 17:30:21 -0700 | [diff] [blame] | 662 | std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(pid)); | 
|  | 663 | std::unique_ptr<Backtrace> backtrace(Backtrace::Create(pid, tid, map.get())); | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 664 | dump_abort_message(backtrace.get(), log, abort_msg_address); | 
|  | 665 | dump_registers(log, tid); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 666 | if (backtrace->Unwind(0)) { | 
| Christopher Ferris | ab9e7dc | 2015-02-09 17:06:27 -0800 | [diff] [blame] | 667 | dump_backtrace_and_stack(backtrace.get(), log); | 
| Christopher Ferris | 30c942c | 2015-05-14 15:39:52 -0700 | [diff] [blame] | 668 | } else { | 
|  | 669 | ALOGE("Unwind failed: pid = %d, tid = %d", pid, tid); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 670 | } | 
| Christopher Ferris | e8bc77e | 2015-05-22 14:26:13 -0700 | [diff] [blame] | 671 | dump_memory_and_code(log, backtrace.get()); | 
| Christopher Ferris | 30c942c | 2015-05-14 15:39:52 -0700 | [diff] [blame] | 672 | if (map.get() != nullptr) { | 
|  | 673 | dump_all_maps(backtrace.get(), map.get(), log, tid); | 
|  | 674 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 675 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 676 | if (want_logs) { | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 677 | dump_logs(log, pid, 5); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 678 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 679 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 680 | bool detach_failed = false; | 
|  | 681 | if (dump_sibling_threads) { | 
| Christopher Ferris | df29061 | 2014-01-22 19:21:07 -0800 | [diff] [blame] | 682 | detach_failed = dump_sibling_thread_report(log, pid, tid, total_sleep_time_usec, map.get()); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 683 | } | 
| Christopher Ferris | 9846497 | 2014-01-06 19:16:33 -0800 | [diff] [blame] | 684 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 685 | if (want_logs) { | 
| Mark Salyzyn | 22b5cef | 2013-11-22 10:53:34 -0800 | [diff] [blame] | 686 | dump_logs(log, pid, 0); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 687 | } | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 688 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 689 | // send EOD to the Activity Manager, then wait for its ack to avoid racing ahead | 
|  | 690 | // and killing the target out from under it | 
|  | 691 | if (log->amfd >= 0) { | 
|  | 692 | uint8_t eodMarker = 0; | 
|  | 693 | TEMP_FAILURE_RETRY( write(log->amfd, &eodMarker, 1) ); | 
|  | 694 | // 3 sec timeout reading the ack; we're fine if that happens | 
|  | 695 | TEMP_FAILURE_RETRY( read(log->amfd, &eodMarker, 1) ); | 
|  | 696 | } | 
|  | 697 |  | 
|  | 698 | return detach_failed; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 699 | } | 
|  | 700 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 701 | // find_and_open_tombstone - find an available tombstone slot, if any, of the | 
|  | 702 | // form tombstone_XX where XX is 00 to MAX_TOMBSTONES-1, inclusive. If no | 
|  | 703 | // file is available, we reuse the least-recently-modified file. | 
|  | 704 | // | 
|  | 705 | // Returns the path of the tombstone file, allocated using malloc().  Caller must free() it. | 
|  | 706 | static char* find_and_open_tombstone(int* fd) { | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 707 | // In a single pass, find an available slot and, in case none | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 708 | // exist, find and record the least-recently-modified file. | 
|  | 709 | char path[128]; | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 710 | int oldest = -1; | 
|  | 711 | struct stat oldest_sb; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 712 | for (int i = 0; i < MAX_TOMBSTONES; i++) { | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 713 | snprintf(path, sizeof(path), TOMBSTONE_TEMPLATE, i); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 714 |  | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 715 | struct stat sb; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 716 | if (!stat(path, &sb)) { | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 717 | if (oldest < 0 || sb.st_mtime < oldest_sb.st_mtime) { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 718 | oldest = i; | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 719 | oldest_sb.st_mtime = sb.st_mtime; | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 720 | } | 
|  | 721 | continue; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 722 | } | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 723 | if (errno != ENOENT) | 
|  | 724 | continue; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 725 |  | 
| Nick Kralevich | 04f9b2a | 2014-07-16 20:03:46 -0700 | [diff] [blame] | 726 | *fd = open(path, O_CREAT | O_EXCL | O_WRONLY | O_NOFOLLOW | O_CLOEXEC, 0600); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 727 | if (*fd < 0) | 
|  | 728 | continue;   // raced ? | 
|  | 729 |  | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 730 | fchown(*fd, AID_SYSTEM, AID_SYSTEM); | 
|  | 731 | return strdup(path); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 732 | } | 
|  | 733 |  | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 734 | if (oldest < 0) { | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 735 | ALOGE("Failed to find a valid tombstone, default to using tombstone 0.\n"); | 
| Christopher Ferris | 68bd59f | 2014-02-07 13:25:26 -0800 | [diff] [blame] | 736 | oldest = 0; | 
|  | 737 | } | 
|  | 738 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 739 | // we didn't find an available file, so we clobber the oldest one | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 740 | snprintf(path, sizeof(path), TOMBSTONE_TEMPLATE, oldest); | 
| Nick Kralevich | 04f9b2a | 2014-07-16 20:03:46 -0700 | [diff] [blame] | 741 | *fd = open(path, O_CREAT | O_TRUNC | O_WRONLY | O_NOFOLLOW | O_CLOEXEC, 0600); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 742 | if (*fd < 0) { | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 743 | ALOGE("failed to open tombstone file '%s': %s\n", path, strerror(errno)); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 744 | return NULL; | 
|  | 745 | } | 
|  | 746 | fchown(*fd, AID_SYSTEM, AID_SYSTEM); | 
|  | 747 | return strdup(path); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 748 | } | 
|  | 749 |  | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 750 | static int activity_manager_connect() { | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 751 | int amfd = socket(PF_UNIX, SOCK_STREAM, 0); | 
|  | 752 | if (amfd >= 0) { | 
|  | 753 | struct sockaddr_un address; | 
|  | 754 | int err; | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 755 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 756 | memset(&address, 0, sizeof(address)); | 
|  | 757 | address.sun_family = AF_UNIX; | 
|  | 758 | strncpy(address.sun_path, NCRASH_SOCKET_PATH, sizeof(address.sun_path)); | 
|  | 759 | err = TEMP_FAILURE_RETRY(connect( | 
|  | 760 | amfd, reinterpret_cast<struct sockaddr*>(&address), sizeof(address))); | 
|  | 761 | if (!err) { | 
|  | 762 | struct timeval tv; | 
|  | 763 | memset(&tv, 0, sizeof(tv)); | 
|  | 764 | tv.tv_sec = 1;  // tight leash | 
|  | 765 | err = setsockopt(amfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)); | 
|  | 766 | if (!err) { | 
|  | 767 | tv.tv_sec = 3;  // 3 seconds on handshake read | 
|  | 768 | err = setsockopt(amfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)); | 
|  | 769 | } | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 770 | } | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 771 | if (err) { | 
|  | 772 | close(amfd); | 
|  | 773 | amfd = -1; | 
|  | 774 | } | 
|  | 775 | } | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 776 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 777 | return amfd; | 
| Christopher Tate | ded2e5a | 2013-03-19 13:12:23 -0700 | [diff] [blame] | 778 | } | 
|  | 779 |  | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 780 | char* engrave_tombstone(pid_t pid, pid_t tid, int signal, int original_si_code, | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 781 | uintptr_t abort_msg_address, bool dump_sibling_threads, | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 782 | bool* detach_failed, int* total_sleep_time_usec) { | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 783 |  | 
|  | 784 | log_t log; | 
|  | 785 | log.current_tid = tid; | 
|  | 786 | log.crashed_tid = tid; | 
|  | 787 |  | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 788 | if ((mkdir(TOMBSTONE_DIR, 0755) == -1) && (errno != EEXIST)) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 789 | ALOGE("failed to create %s: %s\n", TOMBSTONE_DIR, strerror(errno)); | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 790 | } | 
|  | 791 |  | 
|  | 792 | if (chown(TOMBSTONE_DIR, AID_SYSTEM, AID_SYSTEM) == -1) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 793 | ALOGE("failed to change ownership of %s: %s\n", TOMBSTONE_DIR, strerror(errno)); | 
| Kévin PETIT | 4bb4772 | 2013-12-18 16:44:24 +0000 | [diff] [blame] | 794 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 795 |  | 
| Christopher Ferris | c5bb49a | 2014-05-05 11:16:47 -0700 | [diff] [blame] | 796 | int fd = -1; | 
|  | 797 | char* path = NULL; | 
|  | 798 | if (selinux_android_restorecon(TOMBSTONE_DIR, 0) == 0) { | 
|  | 799 | path = find_and_open_tombstone(&fd); | 
|  | 800 | } else { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 801 | ALOGE("Failed to restore security context, not writing tombstone.\n"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 802 | } | 
| rpcraig | f1186f3 | 2012-07-19 09:38:06 -0400 | [diff] [blame] | 803 |  | 
| Brigid Smith | 50eb546 | 2014-06-18 14:17:57 -0700 | [diff] [blame] | 804 | if (fd < 0) { | 
| Christopher Ferris | b36b592 | 2015-06-17 18:35:59 -0700 | [diff] [blame] | 805 | ALOGE("Skipping tombstone write, nothing to do.\n"); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 806 | *detach_failed = false; | 
|  | 807 | return NULL; | 
|  | 808 | } | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 809 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 810 | log.tfd = fd; | 
| Christopher Ferris | c5bb49a | 2014-05-05 11:16:47 -0700 | [diff] [blame] | 811 | // Preserve amfd since it can be modified through the calls below without | 
|  | 812 | // being closed. | 
|  | 813 | int amfd = activity_manager_connect(); | 
|  | 814 | log.amfd = amfd; | 
| Elliott Hughes | 855fcc3 | 2014-04-25 16:05:34 -0700 | [diff] [blame] | 815 | *detach_failed = dump_crash(&log, pid, tid, signal, original_si_code, abort_msg_address, | 
|  | 816 | dump_sibling_threads, total_sleep_time_usec); | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 817 |  | 
| Christopher Ferris | b0412a5 | 2015-05-05 12:23:06 -0700 | [diff] [blame] | 818 | _LOG(&log, logtype::BACKTRACE, "\nTombstone written to: %s\n", path); | 
| Brigid Smith | 62ba489 | 2014-06-10 11:53:08 -0700 | [diff] [blame] | 819 |  | 
| Christopher Ferris | c5bb49a | 2014-05-05 11:16:47 -0700 | [diff] [blame] | 820 | // Either of these file descriptors can be -1, any error is ignored. | 
|  | 821 | close(amfd); | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 822 | close(fd); | 
| Christopher Ferris | c5bb49a | 2014-05-05 11:16:47 -0700 | [diff] [blame] | 823 |  | 
| Christopher Ferris | 20303f8 | 2014-01-10 16:33:16 -0800 | [diff] [blame] | 824 | return path; | 
| Jeff Brown | 053b865 | 2012-06-06 16:25:03 -0700 | [diff] [blame] | 825 | } |