Turning stack_core into a class to make it compatible with adbs.

This includes the fairly large change of refactoring stack_core.py into
a class so that its behavior is compatible with adbs.  Additionally, if
the ABI line does not come before lines that require it to determine
proper widths (registers, stack), then it will assume that the ABI is
32 bit and not 64.

Change-Id: I6ad84a55337d86d25f7f8197048dc93868b0a01a
This commit is contained in:
Brigid Smith
2014-06-30 16:01:40 -07:00
parent 9811d58e78
commit ea0a835d4d
2 changed files with 139 additions and 136 deletions

View File

@@ -69,7 +69,6 @@ def main():
lines = f.readlines() lines = f.readlines()
f.close() f.close()
print "Reading symbols from", symbol.SYMBOLS_DIR
stack_core.ConvertTrace(lines) stack_core.ConvertTrace(lines)
if __name__ == "__main__": if __name__ == "__main__":

View File

@@ -17,58 +17,14 @@
"""stack symbolizes native crash dumps.""" """stack symbolizes native crash dumps."""
import re import re
import symbol import symbol
def PrintTraceLines(trace_lines):
"""Print back trace."""
maxlen = max(map(lambda tl: len(tl[1]), trace_lines))
spacing = ""
if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64":
spacing = " "
print
print "Stack Trace:"
print " RELADDR " + spacing + "FUNCTION".ljust(maxlen) + " FILE:LINE"
for tl in trace_lines:
(addr, symbol_with_offset, location) = tl
print " %8s %s %s" % (addr, symbol_with_offset.ljust(maxlen), location)
return
def PrintValueLines(value_lines):
"""Print stack data values."""
maxlen = max(map(lambda tl: len(tl[2]), value_lines))
print
print "Stack Data:"
print " ADDR VALUE " + "FUNCTION".ljust(maxlen) + " FILE:LINE"
for vl in value_lines:
(addr, value, symbol_with_offset, location) = vl
print " %8s %8s %s %s" % (addr, value, symbol_with_offset.ljust(maxlen), location)
return
UNKNOWN = "<unknown>"
HEAP = "[heap]"
STACK = "[stack]"
def PrintOutput(trace_lines, value_lines):
if trace_lines:
PrintTraceLines(trace_lines)
if value_lines:
PrintValueLines(value_lines)
def PrintDivider():
print
print "-----------------------------------------------------\n"
def CleanLine(ln):
# AndroidFeedback adds zero width spaces into its crash reports. These
# should be removed or the regular expresssions will fail to match.
return unicode(ln, errors='ignore')
def ConvertTrace(lines): def ConvertTrace(lines):
"""Convert strings containing native crash to a stack.""" tracer = TraceConverter()
lines = map(CleanLine, lines) print "Reading symbols from", symbol.SYMBOLS_DIR
tracer.ConvertTrace(lines)
class TraceConverter:
process_info_line = re.compile("(pid: [0-9]+, tid: [0-9]+.*)") process_info_line = re.compile("(pid: [0-9]+, tid: [0-9]+.*)")
abi_line = re.compile("(ABI: \'(.*)\')") abi_line = re.compile("(ABI: \'(.*)\')")
@@ -77,18 +33,22 @@ def ConvertTrace(lines):
thread_line = re.compile("(.*)(\-\-\- ){15}\-\-\-") thread_line = re.compile("(.*)(\-\-\- ){15}\-\-\-")
dalvik_jni_thread_line = re.compile("(\".*\" prio=[0-9]+ tid=[0-9]+ NATIVE.*)") dalvik_jni_thread_line = re.compile("(\".*\" prio=[0-9]+ tid=[0-9]+ NATIVE.*)")
dalvik_native_thread_line = re.compile("(\".*\" sysTid=[0-9]+ nice=[0-9]+.*)") dalvik_native_thread_line = re.compile("(\".*\" sysTid=[0-9]+ nice=[0-9]+.*)")
register_line = re.compile("$a")
for line in lines: trace_line = re.compile("$a")
abi_header = abi_line.search(line) value_line = re.compile("$a")
if abi_header: code_line = re.compile("$a")
symbol.ARCH = abi_header.group(2) trace_lines = []
break value_lines = []
last_frame = -1
width = "{8}" width = "{8}"
if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64":
width = "{16}"
register_line = re.compile("(([ ]*[0-9a-z]{2} +[0-9a-f]" + width + "){4})") def __init__(self): pass
def UpdateABIRegexes(self):
if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64":
self.width = "{16}"
self.register_line = re.compile("(([ ]*[0-9a-z]{2} +[0-9a-f]" + self.width + "){4})")
# Note that both trace and value line matching allow for variable amounts of # Note that both trace and value line matching allow for variable amounts of
# whitespace (e.g. \t). This is because the we want to allow for the stack # whitespace (e.g. \t). This is because the we want to allow for the stack
@@ -97,17 +57,17 @@ def ConvertTrace(lines):
# #
# Examples of matched trace lines include lines from tombstone files like: # Examples of matched trace lines include lines from tombstone files like:
# #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so # #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so
# #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so (symbol) #
# Or lines from AndroidFeedback crash report system logs like: # Or lines from AndroidFeedback crash report system logs like:
# 03-25 00:51:05.520 I/DEBUG ( 65): #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so # 03-25 00:51:05.520 I/DEBUG ( 65): #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so
# Please note the spacing differences. # Please note the spacing differences.
trace_line = re.compile("(.*)\#([0-9]+)[ \t]+(..)[ \t]+([0-9a-f]" + width + ")[ \t]+([^\r\n \t]*)( \((.*)\))?") # pylint: disable-msg=C6310 self.trace_line = re.compile("(.*)\#([0-9]+)[ \t]+(..)[ \t]+([0-9a-f]" + self.width + ")[ \t]+([^\r\n \t]*)( \((.*)\))?") # pylint: disable-msg=C6310
# Examples of matched value lines include: # Examples of matched value lines include:
# bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so
# bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol) # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol)
# 03-25 00:51:05.530 I/DEBUG ( 65): bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so # 03-25 00:51:05.530 I/DEBUG ( 65): bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so
# Again, note the spacing differences. # Again, note the spacing differences.
value_line = re.compile("(.*)([0-9a-f]" + width + ")[ \t]+([0-9a-f]" + width + ")[ \t]+([^\r\n \t]*)( \((.*)\))?") self.value_line = re.compile("(.*)([0-9a-f]" + self.width + ")[ \t]+([0-9a-f]" + self.width + ")[ \t]+([^\r\n \t]*)( \((.*)\))?")
# Lines from 'code around' sections of the output will be matched before # Lines from 'code around' sections of the output will be matched before
# value lines because otheriwse the 'code around' sections will be confused as # value lines because otheriwse the 'code around' sections will be confused as
# value lines. # value lines.
@@ -115,34 +75,76 @@ def ConvertTrace(lines):
# Examples include: # Examples include:
# 801cf40c ffffc4cc 00b2f2c5 00b2f1c7 00c1e1a8 # 801cf40c ffffc4cc 00b2f2c5 00b2f1c7 00c1e1a8
# 03-25 00:51:05.530 I/DEBUG ( 65): 801cf40c ffffc4cc 00b2f2c5 00b2f1c7 00c1e1a8 # 03-25 00:51:05.530 I/DEBUG ( 65): 801cf40c ffffc4cc 00b2f2c5 00b2f1c7 00c1e1a8
code_line = re.compile("(.*)[ \t]*[a-f0-9]" + width + self.code_line = re.compile("(.*)[ \t]*[a-f0-9]" + self.width +
"[ \t]*[a-f0-9]" + width + "[ \t]*[a-f0-9]" + self.width +
"[ \t]*[a-f0-9]" + width + "[ \t]*[a-f0-9]" + self.width +
"[ \t]*[a-f0-9]" + width + "[ \t]*[a-f0-9]" + self.width +
"[ \t]*[a-f0-9]" + width + "[ \t]*[a-f0-9]" + self.width +
"[ \t]*[ \r\n]") # pylint: disable-msg=C6310 "[ \t]*[ \r\n]") # pylint: disable-msg=C6310
trace_lines = [] def CleanLine(self, ln):
value_lines = [] # AndroidFeedback adds zero width spaces into its crash reports. These
last_frame = -1 # should be removed or the regular expresssions will fail to match.
return unicode(ln, errors='ignore')
def PrintTraceLines(self, trace_lines):
"""Print back trace."""
maxlen = max(map(lambda tl: len(tl[1]), trace_lines))
spacing = ""
if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64":
spacing = " "
print
print "Stack Trace:"
print " RELADDR " + spacing + "FUNCTION".ljust(maxlen) + " FILE:LINE"
for tl in self.trace_lines:
(addr, symbol_with_offset, location) = tl
print " %8s %s %s" % (addr, symbol_with_offset.ljust(maxlen), location)
return
def PrintValueLines(self, value_lines):
"""Print stack data values."""
maxlen = max(map(lambda tl: len(tl[2]), self.value_lines))
print
print "Stack Data:"
print " ADDR VALUE " + "FUNCTION".ljust(maxlen) + " FILE:LINE"
for vl in self.value_lines:
(addr, value, symbol_with_offset, location) = vl
print " %8s %8s %s %s" % (addr, value, symbol_with_offset.ljust(maxlen), location)
return
def PrintOutput(self, trace_lines, value_lines):
if self.trace_lines:
self.PrintTraceLines(self.trace_lines)
if self.value_lines:
self.PrintValueLines(self.value_lines)
def PrintDivider(self):
print
print "-----------------------------------------------------\n"
def ConvertTrace(self, lines):
lines = map(self.CleanLine, lines)
for line in lines: for line in lines:
process_header = process_info_line.search(line) self.ProcessLine(line)
signal_header = signal_line.search(line) self.PrintOutput(self.trace_lines, self.value_lines)
abort_message_header = abort_message_line.search(line)
thread_header = thread_line.search(line) def ProcessLine(self, line):
register_header = register_line.search(line) process_header = self.process_info_line.search(line)
abi_header = abi_line.search(line) signal_header = self.signal_line.search(line)
dalvik_jni_thread_header = dalvik_jni_thread_line.search(line) abort_message_header = self.abort_message_line.search(line)
dalvik_native_thread_header = dalvik_native_thread_line.search(line) thread_header = self.thread_line.search(line)
register_header = self.register_line.search(line)
abi_header = self.abi_line.search(line)
dalvik_jni_thread_header = self.dalvik_jni_thread_line.search(line)
dalvik_native_thread_header = self.dalvik_native_thread_line.search(line)
if process_header or signal_header or abort_message_header or thread_header or abi_header or \ if process_header or signal_header or abort_message_header or thread_header or abi_header or \
register_header or dalvik_jni_thread_header or dalvik_native_thread_header: register_header or dalvik_jni_thread_header or dalvik_native_thread_header:
if trace_lines or value_lines: if self.trace_lines or self.value_lines:
PrintOutput(trace_lines, value_lines) self.PrintOutput(self.trace_lines, self.value_lines)
PrintDivider() self.PrintDivider()
trace_lines = [] self.trace_lines = []
value_lines = [] self.value_lines = []
last_frame = -1 self.last_frame = -1
if process_header: if process_header:
print process_header.group(1) print process_header.group(1)
if signal_header: if signal_header:
@@ -159,21 +161,23 @@ def ConvertTrace(lines):
print dalvik_native_thread_header.group(1) print dalvik_native_thread_header.group(1)
if abi_header: if abi_header:
print abi_header.group(1) print abi_header.group(1)
continue symbol.ARCH = abi_header.group(2)
if trace_line.match(line): self.UpdateABIRegexes()
match = trace_line.match(line) return
if self.trace_line.match(line):
match = self.trace_line.match(line)
(unused_0, frame, unused_1, (unused_0, frame, unused_1,
code_addr, area, symbol_present, symbol_name) = match.groups() code_addr, area, symbol_present, symbol_name) = match.groups()
if frame <= last_frame and (trace_lines or value_lines): if frame <= self.last_frame and (self.trace_lines or self.value_lines):
PrintOutput(trace_lines, value_lines) self.PrintOutput(self.trace_lines, self.value_lines)
PrintDivider() self.PrintDivider()
trace_lines = [] self.trace_lines = []
value_lines = [] self.value_lines = []
last_frame = frame self.last_frame = frame
if area == UNKNOWN or area == HEAP or area == STACK: if area == "<unknown>" or area == "[heap]" or area == "[stack]":
trace_lines.append((code_addr, "", area)) self.trace_lines.append((code_addr, "", area))
else: else:
# If a calls b which further calls c and c is inlined to b, we want to # If a calls b which further calls c and c is inlined to b, we want to
# display "a -> b -> c" in the stack trace instead of just "a -> c" # display "a -> b -> c" in the stack trace instead of just "a -> c"
@@ -184,27 +188,30 @@ def ConvertTrace(lines):
if symbol_present: if symbol_present:
source_symbol = symbol.CallCppFilt(symbol_name) source_symbol = symbol.CallCppFilt(symbol_name)
else: else:
source_symbol = UNKNOWN source_symbol = "<unknown>"
if not source_location: if not source_location:
source_location = area source_location = area
if nest_count > 0: if nest_count > 0:
nest_count = nest_count - 1 nest_count = nest_count - 1
trace_lines.append(("v------>", source_symbol, source_location)) arrow = "v------>"
if symbol.ARCH == "arm64" or symbol.ARCH == "mips64" or symbol.ARCH == "x86_64":
arrow = "v-------------->"
self.trace_lines.append((arrow, source_symbol, source_location))
else: else:
if not object_symbol_with_offset: if not object_symbol_with_offset:
object_symbol_with_offset = source_symbol object_symbol_with_offset = source_symbol
trace_lines.append((code_addr, self.trace_lines.append((code_addr,
object_symbol_with_offset, object_symbol_with_offset,
source_location)) source_location))
if code_line.match(line): if self.code_line.match(line):
# Code lines should be ignored. If this were exluded the 'code around' # Code lines should be ignored. If this were exluded the 'code around'
# sections would trigger value_line matches. # sections would trigger value_line matches.
continue; return
if value_line.match(line): if self.value_line.match(line):
match = value_line.match(line) match = self.value_line.match(line)
(unused_, addr, value, area, symbol_present, symbol_name) = match.groups() (unused_, addr, value, area, symbol_present, symbol_name) = match.groups()
if area == UNKNOWN or area == HEAP or area == STACK or not area: if area == "<unknown>" or area == "[heap]" or area == "[stack]" or not area:
value_lines.append((addr, value, "", area)) self.value_lines.append((addr, value, "", area))
else: else:
info = symbol.SymbolInformation(area, value) info = symbol.SymbolInformation(area, value)
(source_symbol, source_location, object_symbol_with_offset) = info.pop() (source_symbol, source_location, object_symbol_with_offset) = info.pop()
@@ -212,17 +219,14 @@ def ConvertTrace(lines):
if symbol_present: if symbol_present:
source_symbol = symbol.CallCppFilt(symbol_name) source_symbol = symbol.CallCppFilt(symbol_name)
else: else:
source_symbol = UNKNOWN source_symbol = "<unknown>"
if not source_location: if not source_location:
source_location = area source_location = area
if not object_symbol_with_offset: if not object_symbol_with_offset:
object_symbol_with_offset = source_symbol object_symbol_with_offset = source_symbol
value_lines.append((addr, self.value_lines.append((addr,
value, value,
object_symbol_with_offset, object_symbol_with_offset,
source_location)) source_location))
PrintOutput(trace_lines, value_lines) #self.PrintOutput(self.trace_lines, self.value_lines)
# vi: ts=2 sw=2