|
| 1 | +#!/usr/bin/env python |
| 2 | + |
| 3 | +import argparse |
| 4 | +import re |
| 5 | +import os |
| 6 | +import subprocess |
| 7 | +import sys |
| 8 | + |
| 9 | + |
| 10 | +class ESPCrashParser(object): |
| 11 | + ESP_EXCEPTIONS = [ |
| 12 | + "Illegal instruction", |
| 13 | + "SYSCALL instruction", |
| 14 | + "InstructionFetchError: Processor internal physical address or data error during instruction fetch", |
| 15 | + "LoadStoreError: Processor internal physical address or data error during load or store", |
| 16 | + "Level1Interrupt: Level-1 interrupt as indicated by set level-1 bits in the INTERRUPT register", |
| 17 | + "Alloca: MOVSP instruction, if caller's registers are not in the register file", |
| 18 | + "IntegerDivideByZero: QUOS, QUOU, REMS, or REMU divisor operand is zero", |
| 19 | + "reserved", |
| 20 | + "Privileged: Attempt to execute a privileged operation when CRING ? 0", |
| 21 | + "LoadStoreAlignmentCause: Load or store to an unaligned address", |
| 22 | + "reserved", |
| 23 | + "reserved", |
| 24 | + "InstrPIFDataError: PIF data error during instruction fetch", |
| 25 | + "LoadStorePIFDataError: Synchronous PIF data error during LoadStore access", |
| 26 | + "InstrPIFAddrError: PIF address error during instruction fetch", |
| 27 | + "LoadStorePIFAddrError: Synchronous PIF address error during LoadStore access", |
| 28 | + "InstTLBMiss: Error during Instruction TLB refill", |
| 29 | + "InstTLBMultiHit: Multiple instruction TLB entries matched", |
| 30 | + "InstFetchPrivilege: An instruction fetch referenced a virtual address at a ring level less than CRING", |
| 31 | + "reserved", |
| 32 | + "InstFetchProhibited: An instruction fetch referenced a page mapped with an attribute that does not permit instruction fetch", |
| 33 | + "reserved", |
| 34 | + "reserved", |
| 35 | + "reserved", |
| 36 | + "LoadStoreTLBMiss: Error during TLB refill for a load or store", |
| 37 | + "LoadStoreTLBMultiHit: Multiple TLB entries matched for a load or store", |
| 38 | + "LoadStorePrivilege: A load or store referenced a virtual address at a ring level less than CRING", |
| 39 | + "reserved", |
| 40 | + "LoadProhibited: A load referenced a page mapped with an attribute that does not permit loads", |
| 41 | + "StoreProhibited: A store referenced a page mapped with an attribute that does not permit stores" |
| 42 | + ] |
| 43 | + |
| 44 | + def __init__(self, toolchain_path, elf_path): |
| 45 | + self.toolchain_path = toolchain_path |
| 46 | + self.gdb_path = os.path.join(toolchain_path, "bin", "xtensa-lx106-elf-gdb") |
| 47 | + self.addr2line_path = os.path.join(toolchain_path, "bin", "xtensa-lx106-elf-addr2line") |
| 48 | + |
| 49 | + if not os.path.exists(self.gdb_path): |
| 50 | + raise Exception("GDB for ESP not found in {} - {} does not exist.\nUse --toolchain to point to " |
| 51 | + "your toolchain folder.".format(self.toolchain_path, self.gdb_path)) |
| 52 | + |
| 53 | + if not os.path.exists(self.addr2line_path): |
| 54 | + raise Exception("addr2line for ESP not found in {} - {} does not exist.\nUse --toolchain to point to " |
| 55 | + "your toolchain folder.".format(self.toolchain_path, self.addr2line_path)) |
| 56 | + |
| 57 | + self.elf_path = elf_path |
| 58 | + if not os.path.exists(self.elf_path): |
| 59 | + raise Exception("ELF file not found: '{}'".format(self.elf_path)) |
| 60 | + |
| 61 | + def parse_text(self, text): |
| 62 | + print self.parse_exception(text) |
| 63 | + |
| 64 | + m = re.search('stack(.*)stack', text, flags = re.MULTILINE | re.DOTALL) |
| 65 | + if m: |
| 66 | + print "Stack trace:" |
| 67 | + for l in self.parse_stack(m.group(1)): |
| 68 | + print " " + l |
| 69 | + else: |
| 70 | + print "No stack trace found." |
| 71 | + |
| 72 | + def parse_exception(self, text): |
| 73 | + m = re.search('Exception \(([0-9]*)\):', text) |
| 74 | + if m: |
| 75 | + exception_id = int(m.group(1)) |
| 76 | + if 0 <= exception_id <= 29: |
| 77 | + return "Exception {}: {}".format(exception_id, ESPCrashParser.ESP_EXCEPTIONS[exception_id]) |
| 78 | + else: |
| 79 | + return "Unknown exception: {}".format(exception_id) |
| 80 | + |
| 81 | + ''' |
| 82 | + Decode one stack or backtrace. |
| 83 | + |
| 84 | + See: https://github.com/me-no-dev/EspExceptionDecoder/blob/master/src/EspExceptionDecoder.java#L402 |
| 85 | + ''' |
| 86 | + def parse_stack(self, text): |
| 87 | + r = re.compile('40[0-2][0-9a-fA-F]{5}\s') |
| 88 | + m = r.findall(text) |
| 89 | + return self.decode_function_addresses(m) |
| 90 | + |
| 91 | + def decode_function_address(self, address): |
| 92 | + args = [self.addr2line_path, "-e", self.elf_path, "-aipfC", address] |
| 93 | + return subprocess.check_output(args).strip() |
| 94 | + |
| 95 | + def decode_function_addresses(self, addresses): |
| 96 | + out = [] |
| 97 | + for a in addresses: |
| 98 | + out.append(self.decode_function_address(a)) |
| 99 | + return out |
| 100 | + |
| 101 | + ''' |
| 102 | + GDB Should produce line number: https://github.com/me-no-dev/EspExceptionDecoder/commit/a78672da204151cc93979a96ed9f89139a73893f |
| 103 | + However it does not produce anything for me. So not using it for now. |
| 104 | + ''' |
| 105 | + def decode_function_addresses_with_gdb(self, addresses): |
| 106 | + args = [self.gdb_path, "--batch"] |
| 107 | + |
| 108 | + # Disable user config file which might interfere here |
| 109 | + args.extend(["-iex", "set auto-load local-gdbinit off"]) |
| 110 | + |
| 111 | + args.append(self.elf_path) |
| 112 | + |
| 113 | + args.extend(["-ex", "set listsize 1"]) |
| 114 | + for address in addresses: |
| 115 | + args.append("-ex") |
| 116 | + args.append("l *0x{}".format(address)) |
| 117 | + args.extend(["-ex", "q"]) |
| 118 | + |
| 119 | + print "Running: {}".format(args) |
| 120 | + out = subprocess.check_output(args) |
| 121 | + print out |
| 122 | + |
| 123 | +def main(): |
| 124 | + parser = argparse.ArgumentParser() |
| 125 | + parser.add_argument("--toolchain", help="Path to the Xtensa toolchain", |
| 126 | + default=os.path.join(os.environ.get("HOME"), ".platformio/packages/toolchain-xtensa")) |
| 127 | + parser.add_argument("--elf", help="Path to the ELF file of the firmware", |
| 128 | + default=".pioenvs/esp/firmware.elf") |
| 129 | + parser.add_argument("input", type=argparse.FileType('r'), default=sys.stdin) |
| 130 | + |
| 131 | + args = parser.parse_args() |
| 132 | + |
| 133 | + crash_parser = ESPCrashParser(args.toolchain, args.elf) |
| 134 | + crash_parser.parse_text(args.input.read()) |
| 135 | + |
| 136 | + |
| 137 | +if __name__ == '__main__': |
| 138 | + main() |
0 commit comments