/usr/share/ofono/scripts/backtrace is in ofono-scripts 1.12.bzr6858+14.04.20140318-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | #!/usr/bin/python3
import os
import re
import sys
import subprocess
if (len(sys.argv) < 3):
print("Usage: %s [binary] [log]" % (sys.argv[0]))
sys.exit(1)
binary = sys.argv[1]
count = 0
frames = []
addrs = []
log_file = open(sys.argv[2], 'r')
# Extract addresses
for line in log_file:
matchobj = re.compile(r'\[(0x[0-9a-f]+)\]$').search(line)
if matchobj:
addrs.append(matchobj.group(1))
log_file.close()
# Feed into addr2line
command = ['addr2line', '--demangle', '--functions', '--basename',
'-e', binary]
command.extend(addrs)
p = subprocess.Popen(command, shell=False, bufsize=0,
stdin=subprocess.PIPE, stdout=subprocess.PIPE, close_fds=True)
(child_stdin, child_stdout) = (p.stdin, p.stdout)
child_stdin.close()
# Backtrace display
for line in child_stdout:
if line.startswith("??"):
continue
line = line.strip()
frames.append(line)
child_stdout.close()
frame_count = len(frames);
count = 0
print("-------- backtrace --------")
while count < frame_count:
print("[%d]: %s() [%s]" % (count/2, frames[count], frames[count + 1]))
count = count + 2
print("---------------------------")
|