blob: 91d95fc212539fb3e5347521aee188b6e93d6992 [file] [log] [blame]
Jeff Brown053b8652012-06-06 16:25:03 -07001/*
Mark Salyzynfca0bd12013-12-12 12:21:20 -08002 * Copyright (C) 2012-2014 The Android Open Source Project
Jeff Brown053b8652012-06-06 16:25:03 -07003 *
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
Jeff Brown053b8652012-06-06 16:25:03 -070017#include <dirent.h>
Kévin PETIT4bb47722013-12-18 16:44:24 +000018#include <errno.h>
19#include <fcntl.h>
20#include <inttypes.h>
21#include <signal.h>
22#include <stddef.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Jeff Brown053b8652012-06-06 16:25:03 -070026#include <time.h>
27#include <sys/ptrace.h>
Kévin PETIT4bb47722013-12-18 16:44:24 +000028#include <sys/socket.h>
Jeff Brown053b8652012-06-06 16:25:03 -070029#include <sys/stat.h>
Kévin PETIT4bb47722013-12-18 16:44:24 +000030#include <sys/un.h>
Jeff Brown053b8652012-06-06 16:25:03 -070031
32#include <private/android_filesystem_config.h>
33
Mark Salyzyn22b5cef2013-11-22 10:53:34 -080034#include <log/log.h>
Colin Cross9227bd32013-07-23 16:59:20 -070035#include <log/logger.h>
Jeff Brown053b8652012-06-06 16:25:03 -070036#include <cutils/properties.h>
37
Christopher Ferris20303f82014-01-10 16:33:16 -080038#include <backtrace/Backtrace.h>
Christopher Ferris46756822014-01-14 20:16:30 -080039#include <backtrace/BacktraceMap.h>
Jeff Brown053b8652012-06-06 16:25:03 -070040
rpcraigf1186f32012-07-19 09:38:06 -040041#include <selinux/android.h>
rpcraigf1186f32012-07-19 09:38:06 -040042
Christopher Ferris20303f82014-01-10 16:33:16 -080043#include <UniquePtr.h>
44
Jeff Brown053b8652012-06-06 16:25:03 -070045#include "machine.h"
46#include "tombstone.h"
Christopher Ferris365e4ae2013-10-02 12:26:48 -070047#include "backtrace.h"
Jeff Brown053b8652012-06-06 16:25:03 -070048
Jeff Brown053b8652012-06-06 16:25:03 -070049#define STACK_WORDS 16
50
51#define MAX_TOMBSTONES 10
52#define TOMBSTONE_DIR "/data/tombstones"
Kévin PETIT4bb47722013-12-18 16:44:24 +000053#define TOMBSTONE_TEMPLATE (TOMBSTONE_DIR"/tombstone_%02d")
Jeff Brown053b8652012-06-06 16:25:03 -070054
Christopher Ferris20303f82014-01-10 16:33:16 -080055// Must match the path defined in NativeCrashListener.java
Christopher Tateded2e5a2013-03-19 13:12:23 -070056#define NCRASH_SOCKET_PATH "/data/system/ndebugsocket"
57
Jeff Brown053b8652012-06-06 16:25:03 -070058static bool signal_has_address(int sig) {
Christopher Ferris20303f82014-01-10 16:33:16 -080059 switch (sig) {
Jeff Brown053b8652012-06-06 16:25:03 -070060 case SIGILL:
Christopher Ferris20303f82014-01-10 16:33:16 -080061 case SIGFPE:
62 case SIGSEGV:
63 case SIGBUS:
64 return true;
65 default:
66 return false;
67 }
68}
69
70static const char* get_signame(int sig) {
71 switch(sig) {
72 case SIGILL: return "SIGILL";
73 case SIGABRT: return "SIGABRT";
74 case SIGBUS: return "SIGBUS";
75 case SIGFPE: return "SIGFPE";
76 case SIGSEGV: return "SIGSEGV";
77 case SIGPIPE: return "SIGPIPE";
78#ifdef SIGSTKFLT
79 case SIGSTKFLT: return "SIGSTKFLT";
80#endif
81 case SIGSTOP: return "SIGSTOP";
82 default: return "?";
83 }
84}
85
86static const char* get_sigcode(int signo, int code) {
87 // Try the signal-specific codes...
88 switch (signo) {
89 case SIGILL:
90 switch (code) {
Jeff Brown053b8652012-06-06 16:25:03 -070091 case ILL_ILLOPC: return "ILL_ILLOPC";
92 case ILL_ILLOPN: return "ILL_ILLOPN";
93 case ILL_ILLADR: return "ILL_ILLADR";
94 case ILL_ILLTRP: return "ILL_ILLTRP";
95 case ILL_PRVOPC: return "ILL_PRVOPC";
96 case ILL_PRVREG: return "ILL_PRVREG";
97 case ILL_COPROC: return "ILL_COPROC";
98 case ILL_BADSTK: return "ILL_BADSTK";
Christopher Ferris20303f82014-01-10 16:33:16 -080099 }
100 break;
Jeff Brown053b8652012-06-06 16:25:03 -0700101 case SIGBUS:
Christopher Ferris20303f82014-01-10 16:33:16 -0800102 switch (code) {
Jeff Brown053b8652012-06-06 16:25:03 -0700103 case BUS_ADRALN: return "BUS_ADRALN";
104 case BUS_ADRERR: return "BUS_ADRERR";
105 case BUS_OBJERR: return "BUS_OBJERR";
Christopher Ferris20303f82014-01-10 16:33:16 -0800106 }
107 break;
Jeff Brown053b8652012-06-06 16:25:03 -0700108 case SIGFPE:
Christopher Ferris20303f82014-01-10 16:33:16 -0800109 switch (code) {
Jeff Brown053b8652012-06-06 16:25:03 -0700110 case FPE_INTDIV: return "FPE_INTDIV";
111 case FPE_INTOVF: return "FPE_INTOVF";
112 case FPE_FLTDIV: return "FPE_FLTDIV";
113 case FPE_FLTOVF: return "FPE_FLTOVF";
114 case FPE_FLTUND: return "FPE_FLTUND";
115 case FPE_FLTRES: return "FPE_FLTRES";
116 case FPE_FLTINV: return "FPE_FLTINV";
117 case FPE_FLTSUB: return "FPE_FLTSUB";
Christopher Ferris20303f82014-01-10 16:33:16 -0800118 }
119 break;
Jeff Brown053b8652012-06-06 16:25:03 -0700120 case SIGSEGV:
Christopher Ferris20303f82014-01-10 16:33:16 -0800121 switch (code) {
Jeff Brown053b8652012-06-06 16:25:03 -0700122 case SEGV_MAPERR: return "SEGV_MAPERR";
123 case SEGV_ACCERR: return "SEGV_ACCERR";
Christopher Ferris20303f82014-01-10 16:33:16 -0800124 }
125 break;
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800126 case SIGTRAP:
Christopher Ferris20303f82014-01-10 16:33:16 -0800127 switch (code) {
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800128 case TRAP_BRKPT: return "TRAP_BRKPT";
129 case TRAP_TRACE: return "TRAP_TRACE";
Christopher Ferris20303f82014-01-10 16:33:16 -0800130 }
131 break;
132 }
133 // Then the other codes...
134 switch (code) {
135 case SI_USER: return "SI_USER";
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800136#if defined(SI_KERNEL)
Christopher Ferris20303f82014-01-10 16:33:16 -0800137 case SI_KERNEL: return "SI_KERNEL";
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800138#endif
Christopher Ferris20303f82014-01-10 16:33:16 -0800139 case SI_QUEUE: return "SI_QUEUE";
140 case SI_TIMER: return "SI_TIMER";
141 case SI_MESGQ: return "SI_MESGQ";
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800142 case SI_ASYNCIO: return "SI_ASYNCIO";
143#if defined(SI_SIGIO)
Christopher Ferris20303f82014-01-10 16:33:16 -0800144 case SI_SIGIO: return "SI_SIGIO";
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800145#endif
146#if defined(SI_TKILL)
Christopher Ferris20303f82014-01-10 16:33:16 -0800147 case SI_TKILL: return "SI_TKILL";
Elliott Hughes8f7d4432012-12-10 10:29:05 -0800148#endif
Christopher Ferris20303f82014-01-10 16:33:16 -0800149 }
150 // Then give up...
151 return "?";
Jeff Brown053b8652012-06-06 16:25:03 -0700152}
153
Christopher Ferris20303f82014-01-10 16:33:16 -0800154static void dump_revision_info(log_t* log) {
155 char revision[PROPERTY_VALUE_MAX];
Ben Chengd7760c12012-09-19 16:04:01 -0700156
Christopher Ferris20303f82014-01-10 16:33:16 -0800157 property_get("ro.revision", revision, "unknown");
Ben Chengd7760c12012-09-19 16:04:01 -0700158
Christopher Ferris20303f82014-01-10 16:33:16 -0800159 _LOG(log, SCOPE_AT_FAULT, "Revision: '%s'\n", revision);
Ben Chengd7760c12012-09-19 16:04:01 -0700160}
161
Christopher Ferris20303f82014-01-10 16:33:16 -0800162static void dump_build_info(log_t* log) {
163 char fingerprint[PROPERTY_VALUE_MAX];
Jeff Brown053b8652012-06-06 16:25:03 -0700164
Christopher Ferris20303f82014-01-10 16:33:16 -0800165 property_get("ro.build.fingerprint", fingerprint, "unknown");
Jeff Brown053b8652012-06-06 16:25:03 -0700166
Christopher Ferris20303f82014-01-10 16:33:16 -0800167 _LOG(log, SCOPE_AT_FAULT, "Build fingerprint: '%s'\n", fingerprint);
Jeff Brown053b8652012-06-06 16:25:03 -0700168}
169
Christopher Ferris20303f82014-01-10 16:33:16 -0800170static void dump_fault_addr(log_t* log, pid_t tid, int sig) {
171 siginfo_t si;
Jeff Brown053b8652012-06-06 16:25:03 -0700172
Christopher Ferris20303f82014-01-10 16:33:16 -0800173 memset(&si, 0, sizeof(si));
174 if (ptrace(PTRACE_GETSIGINFO, tid, 0, &si)){
175 _LOG(log, SCOPE_AT_FAULT, "cannot get siginfo: %s\n", strerror(errno));
176 } else if (signal_has_address(sig)) {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400177 _LOG(log, SCOPE_AT_FAULT, "signal %d (%s), code %d (%s), fault addr %" PRIPTR "\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800178 sig, get_signame(sig), si.si_code, get_sigcode(sig, si.si_code),
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400179 reinterpret_cast<uintptr_t>(si.si_addr));
Christopher Ferris20303f82014-01-10 16:33:16 -0800180 } else {
181 _LOG(log, SCOPE_AT_FAULT, "signal %d (%s), code %d (%s), fault addr --------\n",
182 sig, get_signame(sig), si.si_code, get_sigcode(sig, si.si_code));
183 }
Jeff Brown053b8652012-06-06 16:25:03 -0700184}
185
Christopher Ferris365e4ae2013-10-02 12:26:48 -0700186static void dump_thread_info(log_t* log, pid_t pid, pid_t tid, int scope_flags) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800187 char path[64];
188 char threadnamebuf[1024];
189 char* threadname = NULL;
190 FILE *fp;
Jeff Brown053b8652012-06-06 16:25:03 -0700191
Christopher Ferris20303f82014-01-10 16:33:16 -0800192 snprintf(path, sizeof(path), "/proc/%d/comm", tid);
193 if ((fp = fopen(path, "r"))) {
194 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
195 fclose(fp);
196 if (threadname) {
197 size_t len = strlen(threadname);
198 if (len && threadname[len - 1] == '\n') {
199 threadname[len - 1] = '\0';
200 }
201 }
202 }
203
204 if (IS_AT_FAULT(scope_flags)) {
205 char procnamebuf[1024];
206 char* procname = NULL;
207
208 snprintf(path, sizeof(path), "/proc/%d/cmdline", pid);
Jeff Brown053b8652012-06-06 16:25:03 -0700209 if ((fp = fopen(path, "r"))) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800210 procname = fgets(procnamebuf, sizeof(procnamebuf), fp);
211 fclose(fp);
Jeff Brown053b8652012-06-06 16:25:03 -0700212 }
213
Christopher Ferris20303f82014-01-10 16:33:16 -0800214 _LOG(log, SCOPE_AT_FAULT, "pid: %d, tid: %d, name: %s >>> %s <<<\n", pid, tid,
215 threadname ? threadname : "UNKNOWN", procname ? procname : "UNKNOWN");
216 } else {
217 _LOG(log, 0, "pid: %d, tid: %d, name: %s\n", pid, tid, threadname ? threadname : "UNKNOWN");
218 }
219}
Jeff Brown053b8652012-06-06 16:25:03 -0700220
Christopher Ferris20303f82014-01-10 16:33:16 -0800221static void dump_stack_segment(
222 Backtrace* backtrace, log_t* log, int scope_flags, uintptr_t* sp, size_t words, int label) {
223 for (size_t i = 0; i < words; i++) {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400224 word_t stack_content;
Christopher Ferris20303f82014-01-10 16:33:16 -0800225 if (!backtrace->ReadWord(*sp, &stack_content)) {
226 break;
227 }
228
Christopher Ferris46756822014-01-14 20:16:30 -0800229 const backtrace_map_t* map = backtrace->FindMap(stack_content);
230 const char* map_name;
231 if (!map) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800232 map_name = "";
Christopher Ferris46756822014-01-14 20:16:30 -0800233 } else {
234 map_name = map->name.c_str();
Christopher Ferris20303f82014-01-10 16:33:16 -0800235 }
236 uintptr_t offset = 0;
237 std::string func_name(backtrace->GetFunctionName(stack_content, &offset));
238 if (!func_name.empty()) {
239 if (!i && label >= 0) {
240 if (offset) {
Elliott Hughesf7b4b512014-01-31 23:13:55 -0800241 _LOG(log, scope_flags, " #%02d %" PRIPTR " %" PRIPTR " %s (%s+%" PRIuPTR ")\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800242 label, *sp, stack_content, map_name, func_name.c_str(), offset);
243 } else {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400244 _LOG(log, scope_flags, " #%02d %" PRIPTR " %" PRIPTR " %s (%s)\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800245 label, *sp, stack_content, map_name, func_name.c_str());
Jeff Brown053b8652012-06-06 16:25:03 -0700246 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800247 } else {
248 if (offset) {
Elliott Hughesf7b4b512014-01-31 23:13:55 -0800249 _LOG(log, scope_flags, " %" PRIPTR " %" PRIPTR " %s (%s+%" PRIuPTR ")\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800250 *sp, stack_content, map_name, func_name.c_str(), offset);
251 } else {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400252 _LOG(log, scope_flags, " %" PRIPTR " %" PRIPTR " %s (%s)\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800253 *sp, stack_content, map_name, func_name.c_str());
254 }
255 }
Jeff Brown053b8652012-06-06 16:25:03 -0700256 } else {
Christopher Ferris20303f82014-01-10 16:33:16 -0800257 if (!i && label >= 0) {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400258 _LOG(log, scope_flags, " #%02d %" PRIPTR " %" PRIPTR " %s\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800259 label, *sp, stack_content, map_name);
260 } else {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400261 _LOG(log, scope_flags, " %" PRIPTR " %" PRIPTR " %s\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800262 *sp, stack_content, map_name);
263 }
Jeff Brown053b8652012-06-06 16:25:03 -0700264 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800265
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400266 *sp += sizeof(word_t);
Christopher Ferris20303f82014-01-10 16:33:16 -0800267 }
Jeff Brown053b8652012-06-06 16:25:03 -0700268}
269
Christopher Ferris20303f82014-01-10 16:33:16 -0800270static void dump_stack(Backtrace* backtrace, log_t* log, int scope_flags) {
271 size_t first = 0, last;
272 for (size_t i = 0; i < backtrace->NumFrames(); i++) {
273 const backtrace_frame_data_t* frame = backtrace->GetFrame(i);
274 if (frame->sp) {
275 if (!first) {
276 first = i+1;
277 }
278 last = i;
Jeff Brown053b8652012-06-06 16:25:03 -0700279 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800280 }
281 if (!first) {
282 return;
283 }
284 first--;
285
286 scope_flags |= SCOPE_SENSITIVE;
287
288 // Dump a few words before the first frame.
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400289 word_t sp = backtrace->GetFrame(first)->sp - STACK_WORDS * sizeof(word_t);
Christopher Ferris20303f82014-01-10 16:33:16 -0800290 dump_stack_segment(backtrace, log, scope_flags, &sp, STACK_WORDS, -1);
291
292 // Dump a few words from all successive frames.
293 // Only log the first 3 frames, put the rest in the tombstone.
294 for (size_t i = first; i <= last; i++) {
295 const backtrace_frame_data_t* frame = backtrace->GetFrame(i);
296 if (sp != frame->sp) {
297 _LOG(log, scope_flags, " ........ ........\n");
298 sp = frame->sp;
299 }
300 if (i - first == 3) {
301 scope_flags &= (~SCOPE_AT_FAULT);
302 }
303 if (i == last) {
304 dump_stack_segment(backtrace, log, scope_flags, &sp, STACK_WORDS, i);
305 if (sp < frame->sp + frame->stack_size) {
306 _LOG(log, scope_flags, " ........ ........\n");
307 }
308 } else {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400309 size_t words = frame->stack_size / sizeof(word_t);
Christopher Ferris20303f82014-01-10 16:33:16 -0800310 if (words == 0) {
311 words = 1;
312 } else if (words > STACK_WORDS) {
313 words = STACK_WORDS;
314 }
315 dump_stack_segment(backtrace, log, scope_flags, &sp, words, i);
316 }
317 }
Jeff Brown053b8652012-06-06 16:25:03 -0700318}
319
Christopher Ferris20303f82014-01-10 16:33:16 -0800320static void dump_backtrace_and_stack(Backtrace* backtrace, log_t* log, int scope_flags) {
321 if (backtrace->NumFrames()) {
322 _LOG(log, scope_flags, "\nbacktrace:\n");
323 dump_backtrace_to_log(backtrace, log, scope_flags, " ");
Jeff Brown053b8652012-06-06 16:25:03 -0700324
Christopher Ferris20303f82014-01-10 16:33:16 -0800325 _LOG(log, scope_flags, "\nstack:\n");
326 dump_stack(backtrace, log, scope_flags);
327 }
Jeff Brown053b8652012-06-06 16:25:03 -0700328}
329
Christopher Ferris46756822014-01-14 20:16:30 -0800330static void dump_map(log_t* log, const backtrace_map_t* map, const char* what, int scope_flags) {
331 if (map != NULL) {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400332 _LOG(log, scope_flags, " %" PRIPTR "-%" PRIPTR " %c%c%c %s\n", map->start, map->end,
Christopher Ferris46756822014-01-14 20:16:30 -0800333 (map->flags & PROT_READ) ? 'r' : '-', (map->flags & PROT_WRITE) ? 'w' : '-',
334 (map->flags & PROT_EXEC) ? 'x' : '-', map->name.c_str());
Christopher Ferris20303f82014-01-10 16:33:16 -0800335 } else {
336 _LOG(log, scope_flags, " (no %s)\n", what);
337 }
Elliott Hughesd1420be2013-01-03 13:39:57 -0800338}
339
Christopher Ferris46756822014-01-14 20:16:30 -0800340static void dump_nearby_maps(BacktraceMap* map, log_t* log, pid_t tid, int scope_flags) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800341 scope_flags |= SCOPE_SENSITIVE;
342 siginfo_t si;
343 memset(&si, 0, sizeof(si));
344 if (ptrace(PTRACE_GETSIGINFO, tid, 0, &si)) {
345 _LOG(log, scope_flags, "cannot get siginfo for %d: %s\n", tid, strerror(errno));
346 return;
347 }
348 if (!signal_has_address(si.si_signo)) {
349 return;
350 }
351
Christopher Ferris46756822014-01-14 20:16:30 -0800352 uintptr_t addr = reinterpret_cast<uintptr_t>(si.si_addr);
Christopher Ferris20303f82014-01-10 16:33:16 -0800353 addr &= ~0xfff; // round to 4K page boundary
354 if (addr == 0) { // null-pointer deref
355 return;
356 }
357
Kévin PETITabc60c22013-12-19 12:36:59 +0000358 _LOG(log, scope_flags, "\nmemory map around fault addr %" PRIPTR ":\n",
Christopher Ferris20303f82014-01-10 16:33:16 -0800359 reinterpret_cast<uintptr_t>(si.si_addr));
360
361 // Search for a match, or for a hole where the match would be. The list
362 // is backward from the file content, so it starts at high addresses.
Christopher Ferris46756822014-01-14 20:16:30 -0800363 const backtrace_map_t* cur_map = NULL;
364 const backtrace_map_t* next_map = NULL;
365 const backtrace_map_t* prev_map = NULL;
366 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) {
367 if (addr >= it->start && addr < it->end) {
368 cur_map = &*it;
369 if (it != map->begin()) {
370 prev_map = &*(it-1);
371 }
372 if (++it != map->end()) {
373 next_map = &*it;
374 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800375 break;
Jeff Brown053b8652012-06-06 16:25:03 -0700376 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800377 }
Jeff Brown053b8652012-06-06 16:25:03 -0700378
Christopher Ferris46756822014-01-14 20:16:30 -0800379 // Show the map address in ascending order (like /proc/pid/maps).
380 dump_map(log, prev_map, "map below", scope_flags);
381 dump_map(log, cur_map, "map for address", scope_flags);
382 dump_map(log, next_map, "map above", scope_flags);
Jeff Brown053b8652012-06-06 16:25:03 -0700383}
384
Christopher Ferris20303f82014-01-10 16:33:16 -0800385static void dump_thread(
386 Backtrace* backtrace, log_t* log, int scope_flags, int* total_sleep_time_usec) {
387 wait_for_stop(backtrace->Tid(), total_sleep_time_usec);
Jeff Brown053b8652012-06-06 16:25:03 -0700388
Christopher Ferris20303f82014-01-10 16:33:16 -0800389 dump_registers(log, backtrace->Tid(), scope_flags);
390 dump_backtrace_and_stack(backtrace, log, scope_flags);
391 if (IS_AT_FAULT(scope_flags)) {
392 dump_memory_and_code(log, backtrace->Tid(), scope_flags);
Christopher Ferris46756822014-01-14 20:16:30 -0800393 dump_nearby_maps(backtrace->GetMap(), log, backtrace->Tid(), scope_flags);
Christopher Ferris20303f82014-01-10 16:33:16 -0800394 }
Jeff Brown053b8652012-06-06 16:25:03 -0700395}
396
Christopher Ferris20303f82014-01-10 16:33:16 -0800397// Return true if some thread is not detached cleanly
Christopher Ferris365e4ae2013-10-02 12:26:48 -0700398static bool dump_sibling_thread_report(
Christopher Ferris46756822014-01-14 20:16:30 -0800399 log_t* log, pid_t pid, pid_t tid, int* total_sleep_time_usec, BacktraceMap* map) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800400 char task_path[64];
401 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid);
Jeff Brown053b8652012-06-06 16:25:03 -0700402
Christopher Ferris20303f82014-01-10 16:33:16 -0800403 DIR* d = opendir(task_path);
404 // Bail early if the task directory cannot be opened
405 if (d == NULL) {
406 XLOG("Cannot open /proc/%d/task\n", pid);
407 return false;
408 }
409
410 bool detach_failed = false;
411 struct dirent* de;
412 while ((de = readdir(d)) != NULL) {
413 // Ignore "." and ".."
414 if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) {
415 continue;
Jeff Brown053b8652012-06-06 16:25:03 -0700416 }
417
Christopher Ferris20303f82014-01-10 16:33:16 -0800418 // The main thread at fault has been handled individually
419 char* end;
420 pid_t new_tid = strtoul(de->d_name, &end, 10);
421 if (*end || new_tid == tid) {
422 continue;
Jeff Brown053b8652012-06-06 16:25:03 -0700423 }
424
Christopher Ferris20303f82014-01-10 16:33:16 -0800425 // Skip this thread if cannot ptrace it
426 if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0) {
427 continue;
428 }
429
430 _LOG(log, 0, "--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---\n");
431 dump_thread_info(log, pid, new_tid, 0);
432
Christopher Ferris46756822014-01-14 20:16:30 -0800433 UniquePtr<Backtrace> backtrace(Backtrace::Create(pid, new_tid, map));
Christopher Ferris20303f82014-01-10 16:33:16 -0800434 if (backtrace->Unwind(0)) {
435 dump_thread(backtrace.get(), log, 0, total_sleep_time_usec);
436 }
437
438 if (ptrace(PTRACE_DETACH, new_tid, 0, 0) != 0) {
439 LOG("ptrace detach from %d failed: %s\n", new_tid, strerror(errno));
440 detach_failed = true;
441 }
442 }
443
444 closedir(d);
445 return detach_failed;
Jeff Brown053b8652012-06-06 16:25:03 -0700446}
447
Christopher Ferris20303f82014-01-10 16:33:16 -0800448// Reads the contents of the specified log device, filters out the entries
449// that don't match the specified pid, and writes them to the tombstone file.
450//
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800451// If "tail" is set, we only print the last few lines.
452static void dump_log_file(log_t* log, pid_t pid, const char* filename,
453 unsigned int tail) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800454 bool first = true;
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800455 struct logger_list *logger_list;
Jeff Brown053b8652012-06-06 16:25:03 -0700456
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800457 logger_list = android_logger_list_open(
458 android_name_to_log_id(filename), O_RDONLY | O_NONBLOCK, tail, pid);
Jeff Brown053b8652012-06-06 16:25:03 -0700459
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800460 if (!logger_list) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800461 XLOG("Unable to open %s: %s\n", filename, strerror(errno));
462 return;
463 }
464
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800465 struct log_msg log_entry;
Christopher Ferris20303f82014-01-10 16:33:16 -0800466
467 while (true) {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800468 ssize_t actual = android_logger_list_read(logger_list, &log_entry);
469
Christopher Ferris20303f82014-01-10 16:33:16 -0800470 if (actual < 0) {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800471 if (actual == -EINTR) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800472 // interrupted by signal, retry
473 continue;
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800474 } else if (actual == -EAGAIN) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800475 // non-blocking EOF; we're done
476 break;
477 } else {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800478 _LOG(log, 0, "Error while reading log: %s\n",
479 strerror(-actual));
Christopher Ferris20303f82014-01-10 16:33:16 -0800480 break;
481 }
482 } else if (actual == 0) {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800483 _LOG(log, 0, "Got zero bytes while reading log: %s\n",
484 strerror(errno));
Christopher Ferris20303f82014-01-10 16:33:16 -0800485 break;
Jeff Brown053b8652012-06-06 16:25:03 -0700486 }
487
Christopher Ferris20303f82014-01-10 16:33:16 -0800488 // NOTE: if you XLOG something here, this will spin forever,
489 // because you will be writing as fast as you're reading. Any
490 // high-frequency debug diagnostics should just be written to
491 // the tombstone file.
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800492 struct logger_entry* entry = &log_entry.entry_v1;
Jeff Brown053b8652012-06-06 16:25:03 -0700493
Christopher Ferris20303f82014-01-10 16:33:16 -0800494 if (entry->pid != static_cast<int32_t>(pid)) {
495 // wrong pid, ignore
496 continue;
Jeff Brown053b8652012-06-06 16:25:03 -0700497 }
498
Christopher Ferris20303f82014-01-10 16:33:16 -0800499 if (first) {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800500 _LOG(log, 0, "--------- %slog %s\n",
501 tail ? "tail end of " : "", filename);
Christopher Ferris20303f82014-01-10 16:33:16 -0800502 first = false;
503 }
504
505 // Msg format is: <priority:1><tag:N>\0<message:N>\0
506 //
507 // We want to display it in the same format as "logcat -v threadtime"
508 // (although in this case the pid is redundant).
Christopher Ferris20303f82014-01-10 16:33:16 -0800509 static const char* kPrioChars = "!.VDIWEFS";
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800510 unsigned hdr_size = log_entry.entry.hdr_size;
511 if (!hdr_size) {
512 hdr_size = sizeof(log_entry.entry_v1);
513 }
514 char* msg = (char *)log_entry.buf + hdr_size;
515 unsigned char prio = msg[0];
516 char* tag = msg + 1;
517 msg = tag + strlen(tag) + 1;
Christopher Ferris20303f82014-01-10 16:33:16 -0800518
519 // consume any trailing newlines
Mark Salyzynfca0bd12013-12-12 12:21:20 -0800520 char* nl = msg + strlen(msg) - 1;
521 while (nl >= msg && *nl == '\n') {
522 *nl-- = '\0';
Christopher Ferris20303f82014-01-10 16:33:16 -0800523 }
524
525 char prioChar = (prio < strlen(kPrioChars) ? kPrioChars[prio] : '?');
526
527 char timeBuf[32];
528 time_t sec = static_cast<time_t>(entry->sec);
529 struct tm tmBuf;
530 struct tm* ptm;
531 ptm = localtime_r(&sec, &tmBuf);
532 strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm);
533
Mark Salyzynfca0bd12013-12-12 12:21:20 -0800534 // Look for line breaks ('\n') and display each text line
535 // on a separate line, prefixed with the header, like logcat does.
536 do {
537 nl = strchr(msg, '\n');
538 if (nl) {
539 *nl = '\0';
540 ++nl;
541 }
542
543 _LOG(log, 0, "%s.%03d %5d %5d %c %-8s: %s\n",
544 timeBuf, entry->nsec / 1000000, entry->pid, entry->tid,
545 prioChar, tag, msg);
546
547 } while ((msg = nl));
Christopher Ferris20303f82014-01-10 16:33:16 -0800548 }
Jeff Brown053b8652012-06-06 16:25:03 -0700549
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800550 android_logger_list_free(logger_list);
Jeff Brown053b8652012-06-06 16:25:03 -0700551}
552
Christopher Ferris20303f82014-01-10 16:33:16 -0800553// Dumps the logs generated by the specified pid to the tombstone, from both
554// "system" and "main" log devices. Ideally we'd interleave the output.
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800555static void dump_logs(log_t* log, pid_t pid, unsigned tail) {
556 dump_log_file(log, pid, "system", tail);
557 dump_log_file(log, pid, "main", tail);
Jeff Brown053b8652012-06-06 16:25:03 -0700558}
559
Christopher Ferris20303f82014-01-10 16:33:16 -0800560static void dump_abort_message(Backtrace* backtrace, log_t* log, uintptr_t address) {
Elliott Hughese5f8a692013-04-04 13:52:01 -0700561 if (address == 0) {
562 return;
563 }
564
565 address += sizeof(size_t); // Skip the buffer length.
566
567 char msg[512];
568 memset(msg, 0, sizeof(msg));
569 char* p = &msg[0];
570 while (p < &msg[sizeof(msg)]) {
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400571 word_t data;
572 size_t len = sizeof(word_t);
Christopher Ferris20303f82014-01-10 16:33:16 -0800573 if (!backtrace->ReadWord(address, &data)) {
Elliott Hughese5f8a692013-04-04 13:52:01 -0700574 break;
575 }
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400576 address += sizeof(word_t);
Elliott Hughese5f8a692013-04-04 13:52:01 -0700577
Pavel Chupinc6c194c2013-11-21 23:17:20 +0400578 while (len > 0 && (*p++ = (data >> (sizeof(word_t) - len) * 8) & 0xff) != 0)
579 len--;
Elliott Hughese5f8a692013-04-04 13:52:01 -0700580 }
581 msg[sizeof(msg) - 1] = '\0';
582
Christopher Tate7716aef2013-04-02 14:00:27 -0700583 _LOG(log, SCOPE_AT_FAULT, "Abort message: '%s'\n", msg);
Elliott Hughese5f8a692013-04-04 13:52:01 -0700584}
585
Christopher Ferris20303f82014-01-10 16:33:16 -0800586// Dumps all information about the specified pid to the tombstone.
Elliott Hughese5f8a692013-04-04 13:52:01 -0700587static bool dump_crash(log_t* log, pid_t pid, pid_t tid, int signal, uintptr_t abort_msg_address,
Christopher Ferris20303f82014-01-10 16:33:16 -0800588 bool dump_sibling_threads, int* total_sleep_time_usec) {
589 // don't copy log messages to tombstone unless this is a dev device
590 char value[PROPERTY_VALUE_MAX];
591 property_get("ro.debuggable", value, "0");
592 bool want_logs = (value[0] == '1');
Jeff Brown053b8652012-06-06 16:25:03 -0700593
Christopher Ferris20303f82014-01-10 16:33:16 -0800594 if (log->amfd >= 0) {
595 // Activity Manager protocol: binary 32-bit network-byte-order ints for the
596 // pid and signal number, followed by the raw text of the dump, culminating
597 // in a zero byte that marks end-of-data.
598 uint32_t datum = htonl(pid);
599 TEMP_FAILURE_RETRY( write(log->amfd, &datum, 4) );
600 datum = htonl(signal);
601 TEMP_FAILURE_RETRY( write(log->amfd, &datum, 4) );
602 }
Christopher Tateded2e5a2013-03-19 13:12:23 -0700603
Christopher Ferris20303f82014-01-10 16:33:16 -0800604 _LOG(log, SCOPE_AT_FAULT,
605 "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***\n");
606 dump_build_info(log);
607 dump_revision_info(log);
608 dump_thread_info(log, pid, tid, SCOPE_AT_FAULT);
609 if (signal) {
610 dump_fault_addr(log, tid, signal);
611 }
Jeff Brown053b8652012-06-06 16:25:03 -0700612
Christopher Ferrisdf290612014-01-22 19:21:07 -0800613 UniquePtr<BacktraceMap> map(BacktraceMap::Create(pid));
614 UniquePtr<Backtrace> backtrace(Backtrace::Create(pid, tid, map.get()));
Christopher Ferris20303f82014-01-10 16:33:16 -0800615 if (backtrace->Unwind(0)) {
616 dump_abort_message(backtrace.get(), log, abort_msg_address);
617 dump_thread(backtrace.get(), log, SCOPE_AT_FAULT, total_sleep_time_usec);
618 }
Jeff Brown053b8652012-06-06 16:25:03 -0700619
Christopher Ferris20303f82014-01-10 16:33:16 -0800620 if (want_logs) {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800621 dump_logs(log, pid, 5);
Christopher Ferris20303f82014-01-10 16:33:16 -0800622 }
Jeff Brown053b8652012-06-06 16:25:03 -0700623
Christopher Ferris20303f82014-01-10 16:33:16 -0800624 bool detach_failed = false;
625 if (dump_sibling_threads) {
Christopher Ferrisdf290612014-01-22 19:21:07 -0800626 detach_failed = dump_sibling_thread_report(log, pid, tid, total_sleep_time_usec, map.get());
Christopher Ferris20303f82014-01-10 16:33:16 -0800627 }
Christopher Ferris98464972014-01-06 19:16:33 -0800628
Christopher Ferris20303f82014-01-10 16:33:16 -0800629 if (want_logs) {
Mark Salyzyn22b5cef2013-11-22 10:53:34 -0800630 dump_logs(log, pid, 0);
Christopher Ferris20303f82014-01-10 16:33:16 -0800631 }
Christopher Tateded2e5a2013-03-19 13:12:23 -0700632
Christopher Ferris20303f82014-01-10 16:33:16 -0800633 // send EOD to the Activity Manager, then wait for its ack to avoid racing ahead
634 // and killing the target out from under it
635 if (log->amfd >= 0) {
636 uint8_t eodMarker = 0;
637 TEMP_FAILURE_RETRY( write(log->amfd, &eodMarker, 1) );
638 // 3 sec timeout reading the ack; we're fine if that happens
639 TEMP_FAILURE_RETRY( read(log->amfd, &eodMarker, 1) );
640 }
641
642 return detach_failed;
Jeff Brown053b8652012-06-06 16:25:03 -0700643}
644
Christopher Ferris20303f82014-01-10 16:33:16 -0800645// find_and_open_tombstone - find an available tombstone slot, if any, of the
646// form tombstone_XX where XX is 00 to MAX_TOMBSTONES-1, inclusive. If no
647// file is available, we reuse the least-recently-modified file.
648//
649// Returns the path of the tombstone file, allocated using malloc(). Caller must free() it.
650static char* find_and_open_tombstone(int* fd) {
Christopher Ferris68bd59f2014-02-07 13:25:26 -0800651 // In a single pass, find an available slot and, in case none
Christopher Ferris20303f82014-01-10 16:33:16 -0800652 // exist, find and record the least-recently-modified file.
653 char path[128];
Christopher Ferris68bd59f2014-02-07 13:25:26 -0800654 int oldest = -1;
655 struct stat oldest_sb;
Christopher Ferris20303f82014-01-10 16:33:16 -0800656 for (int i = 0; i < MAX_TOMBSTONES; i++) {
Kévin PETIT4bb47722013-12-18 16:44:24 +0000657 snprintf(path, sizeof(path), TOMBSTONE_TEMPLATE, i);
Jeff Brown053b8652012-06-06 16:25:03 -0700658
Christopher Ferris68bd59f2014-02-07 13:25:26 -0800659 struct stat sb;
Christopher Ferris20303f82014-01-10 16:33:16 -0800660 if (!stat(path, &sb)) {
Christopher Ferris68bd59f2014-02-07 13:25:26 -0800661 if (oldest < 0 || sb.st_mtime < oldest_sb.st_mtime) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800662 oldest = i;
Christopher Ferris68bd59f2014-02-07 13:25:26 -0800663 oldest_sb.st_mtime = sb.st_mtime;
Christopher Ferris20303f82014-01-10 16:33:16 -0800664 }
665 continue;
Jeff Brown053b8652012-06-06 16:25:03 -0700666 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800667 if (errno != ENOENT)
668 continue;
Jeff Brown053b8652012-06-06 16:25:03 -0700669
Christopher Ferris20303f82014-01-10 16:33:16 -0800670 *fd = open(path, O_CREAT | O_EXCL | O_WRONLY, 0600);
671 if (*fd < 0)
672 continue; // raced ?
673
Jeff Brown053b8652012-06-06 16:25:03 -0700674 fchown(*fd, AID_SYSTEM, AID_SYSTEM);
675 return strdup(path);
Christopher Ferris20303f82014-01-10 16:33:16 -0800676 }
677
Christopher Ferris68bd59f2014-02-07 13:25:26 -0800678 if (oldest < 0) {
679 LOG("Failed to find a valid tombstone, default to using tombstone 0.\n");
680 oldest = 0;
681 }
682
Christopher Ferris20303f82014-01-10 16:33:16 -0800683 // we didn't find an available file, so we clobber the oldest one
Kévin PETIT4bb47722013-12-18 16:44:24 +0000684 snprintf(path, sizeof(path), TOMBSTONE_TEMPLATE, oldest);
Christopher Ferris20303f82014-01-10 16:33:16 -0800685 *fd = open(path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
686 if (*fd < 0) {
687 LOG("failed to open tombstone file '%s': %s\n", path, strerror(errno));
688 return NULL;
689 }
690 fchown(*fd, AID_SYSTEM, AID_SYSTEM);
691 return strdup(path);
Jeff Brown053b8652012-06-06 16:25:03 -0700692}
693
Christopher Tateded2e5a2013-03-19 13:12:23 -0700694static int activity_manager_connect() {
Christopher Ferris20303f82014-01-10 16:33:16 -0800695 int amfd = socket(PF_UNIX, SOCK_STREAM, 0);
696 if (amfd >= 0) {
697 struct sockaddr_un address;
698 int err;
Christopher Tateded2e5a2013-03-19 13:12:23 -0700699
Christopher Ferris20303f82014-01-10 16:33:16 -0800700 memset(&address, 0, sizeof(address));
701 address.sun_family = AF_UNIX;
702 strncpy(address.sun_path, NCRASH_SOCKET_PATH, sizeof(address.sun_path));
703 err = TEMP_FAILURE_RETRY(connect(
704 amfd, reinterpret_cast<struct sockaddr*>(&address), sizeof(address)));
705 if (!err) {
706 struct timeval tv;
707 memset(&tv, 0, sizeof(tv));
708 tv.tv_sec = 1; // tight leash
709 err = setsockopt(amfd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv));
710 if (!err) {
711 tv.tv_sec = 3; // 3 seconds on handshake read
712 err = setsockopt(amfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
713 }
Christopher Tateded2e5a2013-03-19 13:12:23 -0700714 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800715 if (err) {
716 close(amfd);
717 amfd = -1;
718 }
719 }
Christopher Tateded2e5a2013-03-19 13:12:23 -0700720
Christopher Ferris20303f82014-01-10 16:33:16 -0800721 return amfd;
Christopher Tateded2e5a2013-03-19 13:12:23 -0700722}
723
Christopher Ferris20303f82014-01-10 16:33:16 -0800724char* engrave_tombstone(
725 pid_t pid, pid_t tid, int signal, uintptr_t abort_msg_address, bool dump_sibling_threads,
726 bool quiet, bool* detach_failed, int* total_sleep_time_usec) {
Kévin PETIT4bb47722013-12-18 16:44:24 +0000727 if ((mkdir(TOMBSTONE_DIR, 0755) == -1) && (errno != EEXIST)) {
728 LOG("failed to create %s: %s\n", TOMBSTONE_DIR, strerror(errno));
729 }
730
731 if (chown(TOMBSTONE_DIR, AID_SYSTEM, AID_SYSTEM) == -1) {
732 LOG("failed to change ownership of %s: %s\n", TOMBSTONE_DIR, strerror(errno));
733 }
Jeff Brown053b8652012-06-06 16:25:03 -0700734
Christopher Ferris20303f82014-01-10 16:33:16 -0800735 if (selinux_android_restorecon(TOMBSTONE_DIR) == -1) {
736 *detach_failed = false;
737 return NULL;
738 }
rpcraigf1186f32012-07-19 09:38:06 -0400739
Christopher Ferris20303f82014-01-10 16:33:16 -0800740 int fd;
741 char* path = find_and_open_tombstone(&fd);
742 if (!path) {
743 *detach_failed = false;
744 return NULL;
745 }
Jeff Brown053b8652012-06-06 16:25:03 -0700746
Christopher Ferris20303f82014-01-10 16:33:16 -0800747 log_t log;
748 log.tfd = fd;
749 log.amfd = activity_manager_connect();
750 log.quiet = quiet;
751 *detach_failed = dump_crash(
752 &log, pid, tid, signal, abort_msg_address, dump_sibling_threads, total_sleep_time_usec);
Jeff Brown053b8652012-06-06 16:25:03 -0700753
Christopher Ferris20303f82014-01-10 16:33:16 -0800754 close(log.amfd);
755 close(fd);
756 return path;
Jeff Brown053b8652012-06-06 16:25:03 -0700757}