1 /*
2  * Copyright (C) 2016 The Android Open Source Project
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 
17 #include "native_stack_dump.h"
18 
19 #include <memory>
20 #include <ostream>
21 
22 #include <stdio.h>
23 
24 #include "art_method.h"
25 
26 // For DumpNativeStack.
27 #include <backtrace/Backtrace.h>
28 #include <backtrace/BacktraceMap.h>
29 
30 #if defined(__linux__)
31 
32 #include <memory>
33 #include <vector>
34 
35 #include <linux/unistd.h>
36 #include <poll.h>
37 #include <signal.h>
38 #include <stdlib.h>
39 #include <sys/time.h>
40 #include <sys/types.h>
41 
42 #include "android-base/file.h"
43 #include "android-base/stringprintf.h"
44 #include "android-base/strings.h"
45 
46 #include "arch/instruction_set.h"
47 #include "base/aborting.h"
48 #include "base/bit_utils.h"
49 #include "base/file_utils.h"
50 #include "base/memory_tool.h"
51 #include "base/mutex.h"
52 #include "base/os.h"
53 #include "base/unix_file/fd_file.h"
54 #include "base/utils.h"
55 #include "class_linker.h"
56 #include "entrypoints/runtime_asm_entrypoints.h"
57 #include "oat_quick_method_header.h"
58 #include "runtime.h"
59 #include "thread-current-inl.h"
60 
61 #endif
62 
63 namespace art {
64 
65 #if defined(__linux__)
66 
67 using android::base::StringPrintf;
68 
69 static constexpr bool kUseAddr2line = !kIsTargetBuild;
70 
FindAddr2line()71 std::string FindAddr2line() {
72   if (!kIsTargetBuild) {
73     constexpr const char* kAddr2linePrebuiltPath =
74       "/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/bin/x86_64-linux-addr2line";
75     const char* env_value = getenv("ANDROID_BUILD_TOP");
76     if (env_value != nullptr) {
77       return std::string(env_value) + kAddr2linePrebuiltPath;
78     }
79   }
80   return std::string("/usr/bin/addr2line");
81 }
82 
83 ALWAYS_INLINE
WritePrefix(std::ostream & os,const char * prefix,bool odd)84 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) {
85   if (prefix != nullptr) {
86     os << prefix;
87   }
88   os << "  ";
89   if (!odd) {
90     os << " ";
91   }
92 }
93 
94 // The state of an open pipe to addr2line. In "server" mode, addr2line takes input on stdin
95 // and prints the result to stdout. This struct keeps the state of the open connection.
96 struct Addr2linePipe {
Addr2linePipeart::Addr2linePipe97   Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid)
98       : in(in_fd, false), out(out_fd, false), file(file_name), child_pid(pid), odd(true) {}
99 
~Addr2linePipeart::Addr2linePipe100   ~Addr2linePipe() {
101     kill(child_pid, SIGKILL);
102   }
103 
104   File in;      // The file descriptor that is connected to the output of addr2line.
105   File out;     // The file descriptor that is connected to the input of addr2line.
106 
107   const std::string file;     // The file addr2line is working on, so that we know when to close
108                               // and restart.
109   const pid_t child_pid;      // The pid of the child, which we should kill when we're done.
110   bool odd;                   // Print state for indentation of lines.
111 };
112 
Connect(const std::string & name,const char * args[])113 static std::unique_ptr<Addr2linePipe> Connect(const std::string& name, const char* args[]) {
114   int caller_to_addr2line[2];
115   int addr2line_to_caller[2];
116 
117   if (pipe(caller_to_addr2line) == -1) {
118     return nullptr;
119   }
120   if (pipe(addr2line_to_caller) == -1) {
121     close(caller_to_addr2line[0]);
122     close(caller_to_addr2line[1]);
123     return nullptr;
124   }
125 
126   pid_t pid = fork();
127   if (pid == -1) {
128     close(caller_to_addr2line[0]);
129     close(caller_to_addr2line[1]);
130     close(addr2line_to_caller[0]);
131     close(addr2line_to_caller[1]);
132     return nullptr;
133   }
134 
135   if (pid == 0) {
136     dup2(caller_to_addr2line[0], STDIN_FILENO);
137     dup2(addr2line_to_caller[1], STDOUT_FILENO);
138 
139     close(caller_to_addr2line[0]);
140     close(caller_to_addr2line[1]);
141     close(addr2line_to_caller[0]);
142     close(addr2line_to_caller[1]);
143 
144     execv(args[0], const_cast<char* const*>(args));
145     exit(1);
146   } else {
147     close(caller_to_addr2line[0]);
148     close(addr2line_to_caller[1]);
149     return std::make_unique<Addr2linePipe>(addr2line_to_caller[0],
150                                            caller_to_addr2line[1],
151                                            name,
152                                            pid);
153   }
154 }
155 
Drain(size_t expected,const char * prefix,std::unique_ptr<Addr2linePipe> * pipe,std::ostream & os)156 static void Drain(size_t expected,
157                   const char* prefix,
158                   std::unique_ptr<Addr2linePipe>* pipe /* inout */,
159                   std::ostream& os) {
160   DCHECK(pipe != nullptr);
161   DCHECK(pipe->get() != nullptr);
162   int in = pipe->get()->in.Fd();
163   DCHECK_GE(in, 0);
164 
165   bool prefix_written = false;
166 
167   for (;;) {
168     constexpr uint32_t kWaitTimeExpectedMilli = 500;
169     constexpr uint32_t kWaitTimeUnexpectedMilli = 50;
170 
171     int timeout = expected > 0 ? kWaitTimeExpectedMilli : kWaitTimeUnexpectedMilli;
172     struct pollfd read_fd{in, POLLIN, 0};
173     int retval = TEMP_FAILURE_RETRY(poll(&read_fd, 1, timeout));
174     if (retval == -1) {
175       // An error occurred.
176       pipe->reset();
177       return;
178     }
179 
180     if (retval == 0) {
181       // Timeout.
182       return;
183     }
184 
185     if (!(read_fd.revents & POLLIN)) {
186       // addr2line call exited.
187       pipe->reset();
188       return;
189     }
190 
191     constexpr size_t kMaxBuffer = 128;  // Relatively small buffer. Should be OK as we're on an
192     // alt stack, but just to be sure...
193     char buffer[kMaxBuffer];
194     memset(buffer, 0, kMaxBuffer);
195     int bytes_read = TEMP_FAILURE_RETRY(read(in, buffer, kMaxBuffer - 1));
196     if (bytes_read <= 0) {
197       // This should not really happen...
198       pipe->reset();
199       return;
200     }
201     buffer[bytes_read] = '\0';
202 
203     char* tmp = buffer;
204     while (*tmp != 0) {
205       if (!prefix_written) {
206         WritePrefix(os, prefix, (*pipe)->odd);
207         prefix_written = true;
208       }
209       char* new_line = strchr(tmp, '\n');
210       if (new_line == nullptr) {
211         os << tmp;
212 
213         break;
214       } else {
215         char saved = *(new_line + 1);
216         *(new_line + 1) = 0;
217         os << tmp;
218         *(new_line + 1) = saved;
219 
220         tmp = new_line + 1;
221         prefix_written = false;
222         (*pipe)->odd = !(*pipe)->odd;
223 
224         if (expected > 0) {
225           expected--;
226         }
227       }
228     }
229   }
230 }
231 
Addr2line(const std::string & map_src,uintptr_t offset,std::ostream & os,const char * prefix,std::unique_ptr<Addr2linePipe> * pipe)232 static void Addr2line(const std::string& map_src,
233                       uintptr_t offset,
234                       std::ostream& os,
235                       const char* prefix,
236                       std::unique_ptr<Addr2linePipe>* pipe /* inout */) {
237   std::array<const char*, 3> kIgnoreSuffixes{ ".dex", ".jar", ".vdex" };
238   for (const char* ignore_suffix : kIgnoreSuffixes) {
239     if (android::base::EndsWith(map_src, ignore_suffix)) {
240       // Ignore file names that do not have map information addr2line can consume. e.g. vdex
241       // files are special frames injected for the interpreter so they don't have any line
242       // number information available.
243       return;
244     }
245   }
246   if (map_src == "[vdso]") {
247     // addr2line will not work on the vdso.
248     return;
249   }
250 
251   if (*pipe == nullptr || (*pipe)->file != map_src) {
252     if (*pipe != nullptr) {
253       Drain(0, prefix, pipe, os);
254     }
255     pipe->reset();  // Close early.
256 
257     std::string addr2linePath = FindAddr2line();
258     const char* args[7] = {
259         addr2linePath.c_str(),
260         "--functions",
261         "--inlines",
262         "--demangle",
263         "-e",
264         map_src.c_str(),
265         nullptr
266     };
267     *pipe = Connect(map_src, args);
268   }
269 
270   Addr2linePipe* pipe_ptr = pipe->get();
271   if (pipe_ptr == nullptr) {
272     // Failed...
273     return;
274   }
275 
276   // Send the offset.
277   const std::string hex_offset = StringPrintf("%zx\n", offset);
278 
279   if (!pipe_ptr->out.WriteFully(hex_offset.data(), hex_offset.length())) {
280     // Error. :-(
281     pipe->reset();
282     return;
283   }
284 
285   // Now drain (expecting two lines).
286   Drain(2U, prefix, pipe, os);
287 }
288 
RunCommand(const std::string & cmd)289 static bool RunCommand(const std::string& cmd) {
290   FILE* stream = popen(cmd.c_str(), "r");
291   if (stream) {
292     pclose(stream);
293     return true;
294   } else {
295     return false;
296   }
297 }
298 
PcIsWithinQuickCode(ArtMethod * method,uintptr_t pc)299 static bool PcIsWithinQuickCode(ArtMethod* method, uintptr_t pc) NO_THREAD_SAFETY_ANALYSIS {
300   const void* entry_point = method->GetEntryPointFromQuickCompiledCode();
301   if (entry_point == nullptr) {
302     return pc == 0;
303   }
304   ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
305   if (class_linker->IsQuickGenericJniStub(entry_point) ||
306       class_linker->IsQuickResolutionStub(entry_point) ||
307       class_linker->IsQuickToInterpreterBridge(entry_point)) {
308     return false;
309   }
310   // The backtrace library might have heuristically subracted instruction
311   // size from the pc, to pretend the pc is at the calling instruction.
312   if (reinterpret_cast<uintptr_t>(GetQuickInstrumentationExitPc()) - pc <= 4) {
313     return false;
314   }
315   uintptr_t code = reinterpret_cast<uintptr_t>(EntryPointToCodePointer(entry_point));
316   uintptr_t code_size = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetCodeSize();
317   return code <= pc && pc <= (code + code_size);
318 }
319 
DumpNativeStack(std::ostream & os,pid_t tid,BacktraceMap * existing_map,const char * prefix,ArtMethod * current_method,void * ucontext_ptr,bool skip_frames)320 void DumpNativeStack(std::ostream& os,
321                      pid_t tid,
322                      BacktraceMap* existing_map,
323                      const char* prefix,
324                      ArtMethod* current_method,
325                      void* ucontext_ptr,
326                      bool skip_frames) {
327   // Historical note: This was disabled when running under Valgrind (b/18119146).
328 
329   BacktraceMap* map = existing_map;
330   std::unique_ptr<BacktraceMap> tmp_map;
331   if (map == nullptr) {
332     tmp_map.reset(BacktraceMap::Create(getpid()));
333     map = tmp_map.get();
334   }
335   std::unique_ptr<Backtrace> backtrace(Backtrace::Create(BACKTRACE_CURRENT_PROCESS, tid, map));
336   backtrace->SetSkipFrames(skip_frames);
337   if (!backtrace->Unwind(0, reinterpret_cast<ucontext*>(ucontext_ptr))) {
338     os << prefix << "(backtrace::Unwind failed for thread " << tid
339        << ": " <<  backtrace->GetErrorString(backtrace->GetError()) << ")" << std::endl;
340     return;
341   } else if (backtrace->NumFrames() == 0) {
342     os << prefix << "(no native stack frames for thread " << tid << ")" << std::endl;
343     return;
344   }
345 
346   // Check whether we have and should use addr2line.
347   bool use_addr2line;
348   if (kUseAddr2line) {
349     // Try to run it to see whether we have it. Push an argument so that it doesn't assume a.out
350     // and print to stderr.
351     use_addr2line = (gAborting > 0) && RunCommand(FindAddr2line() + " -h");
352   } else {
353     use_addr2line = false;
354   }
355 
356   std::unique_ptr<Addr2linePipe> addr2line_state;
357 
358   for (Backtrace::const_iterator it = backtrace->begin();
359        it != backtrace->end(); ++it) {
360     // We produce output like this:
361     // ]    #00 pc 000075bb8  /system/lib/libc.so (unwind_backtrace_thread+536)
362     // In order for parsing tools to continue to function, the stack dump
363     // format must at least adhere to this format:
364     //  #XX pc <RELATIVE_ADDR>  <FULL_PATH_TO_SHARED_LIBRARY> ...
365     // The parsers require a single space before and after pc, and two spaces
366     // after the <RELATIVE_ADDR>. There can be any prefix data before the
367     // #XX. <RELATIVE_ADDR> has to be a hex number but with no 0x prefix.
368     os << prefix << StringPrintf("#%02zu pc ", it->num);
369     bool try_addr2line = false;
370     if (!BacktraceMap::IsValid(it->map)) {
371       os << StringPrintf(Is64BitInstructionSet(kRuntimeISA) ? "%016" PRIx64 "  ???"
372                                                             : "%08" PRIx64 "  ???",
373                          it->pc);
374     } else {
375       os << StringPrintf(Is64BitInstructionSet(kRuntimeISA) ? "%016" PRIx64 "  "
376                                                             : "%08" PRIx64 "  ",
377                          it->rel_pc);
378       if (it->map.name.empty()) {
379         os << StringPrintf("<anonymous:%" PRIx64 ">", it->map.start);
380       } else {
381         os << it->map.name;
382       }
383       if (it->map.offset != 0) {
384         os << StringPrintf(" (offset %" PRIx64 ")", it->map.offset);
385       }
386       os << " (";
387       if (!it->func_name.empty()) {
388         os << it->func_name;
389         if (it->func_offset != 0) {
390           os << "+" << it->func_offset;
391         }
392         // Functions found using the gdb jit interface will be in an empty
393         // map that cannot be found using addr2line.
394         if (!it->map.name.empty()) {
395           try_addr2line = true;
396         }
397       } else if (current_method != nullptr &&
398           Locks::mutator_lock_->IsSharedHeld(Thread::Current()) &&
399           PcIsWithinQuickCode(current_method, it->pc)) {
400         const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode();
401         os << current_method->JniLongName() << "+"
402            << (it->pc - reinterpret_cast<uint64_t>(start_of_code));
403       } else {
404         os << "???";
405       }
406       os << ")";
407     }
408     os << std::endl;
409     if (try_addr2line && use_addr2line) {
410       Addr2line(it->map.name, it->rel_pc, os, prefix, &addr2line_state);
411     }
412   }
413 
414   if (addr2line_state != nullptr) {
415     Drain(0, prefix, &addr2line_state, os);
416   }
417 }
418 
419 #elif defined(__APPLE__)
420 
421 void DumpNativeStack(std::ostream& os ATTRIBUTE_UNUSED,
422                      pid_t tid ATTRIBUTE_UNUSED,
423                      BacktraceMap* existing_map ATTRIBUTE_UNUSED,
424                      const char* prefix ATTRIBUTE_UNUSED,
425                      ArtMethod* current_method ATTRIBUTE_UNUSED,
426                      void* ucontext_ptr ATTRIBUTE_UNUSED,
427                      bool skip_frames ATTRIBUTE_UNUSED) {
428 }
429 
430 #else
431 #error "Unsupported architecture for native stack dumps."
432 #endif
433 
434 }  // namespace art
435