| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| struct dwarf1_debug |
| { |
| |
| bfd* abfd; |
| |
| |
| asymbol** syms; |
| |
| |
| struct dwarf1_unit* lastUnit; |
| |
| |
| |
| bfd_byte *debug_section; |
| |
| |
| bfd_byte *debug_section_end; |
| |
| |
| bfd_byte *line_section; |
| |
| |
| bfd_byte *line_section_end; |
| |
| |
| bfd_byte *currentDie; |
| }; |
| |
| |
| |
| struct dwarf1_unit |
| { |
| |
| struct dwarf1_unit* prev; |
| |
| |
| char *name; |
| |
| |
| unsigned long low_pc; |
| unsigned long high_pc; |
| |
| |
| int has_stmt_list; |
| |
| |
| unsigned long stmt_list_offset; |
| |
| |
| bfd_byte *first_child; |
| |
| |
| unsigned long line_count; |
| |
| |
| struct linenumber* linenumber_table; |
| |
| |
| struct dwarf1_func* func_list; |
| }; |
| |
| |
| |
| struct dwarf1_func |
| { |
| |
| struct dwarf1_func* prev; |
| |
| |
| char* name; |
| |
| |
| unsigned long low_pc; |
| unsigned long high_pc; |
| }; |
| |
| |
| struct die_info |
| { |
| unsigned long length; |
| unsigned long sibling; |
| unsigned long low_pc; |
| unsigned long high_pc; |
| unsigned long stmt_list_offset; |
| |
| char* name; |
| |
| int has_stmt_list; |
| |
| unsigned short tag; |
| }; |
| |
| |
| struct linenumber |
| { |
| |
| unsigned long addr; |
| |
| |
| unsigned long linenumber; |
| }; |
| |
| |
| |
| |
| |
| |
| |
| static struct dwarf1_unit* |
| alloc_dwarf1_unit (struct dwarf1_debug* stash) |
| { |
| bfd_size_type amt = sizeof (struct dwarf1_unit); |
| |
| struct dwarf1_unit* x = (struct dwarf1_unit *) bfd_zalloc (stash->abfd, amt); |
| if (x) |
| { |
| x->prev = stash->lastUnit; |
| stash->lastUnit = x; |
| } |
| |
| return x; |
| } |
| |
| |
| |
| |
| static struct dwarf1_func * |
| alloc_dwarf1_func (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) |
| { |
| bfd_size_type amt = sizeof (struct dwarf1_func); |
| |
| struct dwarf1_func* x = (struct dwarf1_func *) bfd_zalloc (stash->abfd, amt); |
| if (x) |
| { |
| x->prev = aUnit->func_list; |
| aUnit->func_list = x; |
| } |
| |
| return x; |
| } |
| |
| |
| |
| |
| |
| |
| |
| |
| static bfd_boolean |
| parse_die (bfd * abfd, |
| struct die_info * aDieInfo, |
| bfd_byte * aDiePtr, |
| bfd_byte * aDiePtrEnd) |
| { |
| bfd_byte *this_die = aDiePtr; |
| bfd_byte *xptr = this_die; |
| |
| memset (aDieInfo, 0, sizeof (* aDieInfo)); |
| |
| |
| if (xptr + 4 > aDiePtrEnd) |
| return FALSE; |
| aDieInfo->length = bfd_get_32 (abfd, xptr); |
| xptr += 4; |
| if (aDieInfo->length == 0 |
| || this_die + aDieInfo->length > aDiePtrEnd) |
| return FALSE; |
| aDiePtrEnd = this_die + aDieInfo->length; |
| if (aDieInfo->length < 6) |
| { |
| |
| aDieInfo->tag = TAG_padding; |
| return TRUE; |
| } |
| |
| |
| if (xptr + 2 > aDiePtrEnd) |
| return FALSE; |
| aDieInfo->tag = bfd_get_16 (abfd, xptr); |
| xptr += 2; |
| |
| |
| while (xptr + 2 <= aDiePtrEnd) |
| { |
| unsigned int block_len; |
| unsigned short attr; |
| |
| |
| |
| |
| attr = bfd_get_16 (abfd, xptr); |
| xptr += 2; |
| |
| switch (FORM_FROM_ATTR (attr)) |
| { |
| case FORM_DATA2: |
| xptr += 2; |
| break; |
| case FORM_DATA4: |
| case FORM_REF: |
| if (xptr + 4 <= aDiePtrEnd) |
| { |
| if (attr == AT_sibling) |
| aDieInfo->sibling = bfd_get_32 (abfd, xptr); |
| else if (attr == AT_stmt_list) |
| { |
| aDieInfo->stmt_list_offset = bfd_get_32 (abfd, xptr); |
| aDieInfo->has_stmt_list = 1; |
| } |
| } |
| xptr += 4; |
| break; |
| case FORM_DATA8: |
| xptr += 8; |
| break; |
| case FORM_ADDR: |
| if (xptr + 4 <= aDiePtrEnd) |
| { |
| if (attr == AT_low_pc) |
| aDieInfo->low_pc = bfd_get_32 (abfd, xptr); |
| else if (attr == AT_high_pc) |
| aDieInfo->high_pc = bfd_get_32 (abfd, xptr); |
| } |
| xptr += 4; |
| break; |
| case FORM_BLOCK2: |
| if (xptr + 2 <= aDiePtrEnd) |
| { |
| block_len = bfd_get_16 (abfd, xptr); |
| if (xptr + block_len > aDiePtrEnd |
| || xptr + block_len < xptr) |
| return FALSE; |
| xptr += block_len; |
| } |
| xptr += 2; |
| break; |
| case FORM_BLOCK4: |
| if (xptr + 4 <= aDiePtrEnd) |
| { |
| block_len = bfd_get_32 (abfd, xptr); |
| if (xptr + block_len > aDiePtrEnd |
| || xptr + block_len < xptr) |
| return FALSE; |
| xptr += block_len; |
| } |
| xptr += 4; |
| break; |
| case FORM_STRING: |
| if (attr == AT_name) |
| aDieInfo->name = (char *) xptr; |
| xptr += strnlen ((char *) xptr, aDiePtrEnd - xptr) + 1; |
| break; |
| } |
| } |
| |
| return TRUE; |
| } |
| |
| |
| |
| |
| |
| static bfd_boolean |
| parse_line_table (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) |
| { |
| bfd_byte *xptr; |
| |
| |
| if (stash->line_section == 0) |
| { |
| asection *msec; |
| bfd_size_type size; |
| |
| msec = bfd_get_section_by_name (stash->abfd, ".line"); |
| if (! msec) |
| return FALSE; |
| |
| size = msec->rawsize ? msec->rawsize : msec->size; |
| stash->line_section |
| = bfd_simple_get_relocated_section_contents |
| (stash->abfd, msec, NULL, stash->syms); |
| |
| if (! stash->line_section) |
| return FALSE; |
| |
| stash->line_section_end = stash->line_section + size; |
| } |
| |
| xptr = stash->line_section + aUnit->stmt_list_offset; |
| if (xptr + 8 <= stash->line_section_end) |
| { |
| unsigned long eachLine; |
| bfd_byte *tblend; |
| unsigned long base; |
| bfd_size_type amt; |
| |
| |
| tblend = bfd_get_32 (stash->abfd, (bfd_byte *) xptr) + xptr; |
| xptr += 4; |
| |
| |
| base = bfd_get_32 (stash->abfd, (bfd_byte *) xptr); |
| xptr += 4; |
| |
| |
| |
| aUnit->line_count = (tblend - xptr) / 10; |
| |
| |
| amt = sizeof (struct linenumber) * aUnit->line_count; |
| aUnit->linenumber_table = (struct linenumber *) bfd_alloc (stash->abfd, |
| amt); |
| if (!aUnit->linenumber_table) |
| return FALSE; |
| |
| for (eachLine = 0; eachLine < aUnit->line_count; eachLine++) |
| { |
| if (xptr + 10 > stash->line_section_end) |
| { |
| aUnit->line_count = eachLine; |
| break; |
| } |
| |
| aUnit->linenumber_table[eachLine].linenumber |
| = bfd_get_32 (stash->abfd, (bfd_byte *) xptr); |
| xptr += 4; |
| |
| |
| xptr += 2; |
| |
| |
| aUnit->linenumber_table[eachLine].addr |
| = base + bfd_get_32 (stash->abfd, (bfd_byte *) xptr); |
| xptr += 4; |
| } |
| } |
| |
| return TRUE; |
| } |
| |
| |
| |
| |
| |
| |
| static bfd_boolean |
| parse_functions_in_unit (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) |
| { |
| bfd_byte *eachDie; |
| |
| if (aUnit->first_child) |
| for (eachDie = aUnit->first_child; |
| eachDie < stash->debug_section_end; |
| ) |
| { |
| struct die_info eachDieInfo; |
| |
| if (! parse_die (stash->abfd, &eachDieInfo, eachDie, |
| stash->debug_section_end)) |
| return FALSE; |
| |
| if (eachDieInfo.tag == TAG_global_subroutine |
| || eachDieInfo.tag == TAG_subroutine |
| || eachDieInfo.tag == TAG_inlined_subroutine |
| || eachDieInfo.tag == TAG_entry_point) |
| { |
| struct dwarf1_func* aFunc = alloc_dwarf1_func (stash,aUnit); |
| if (!aFunc) |
| return FALSE; |
| |
| aFunc->name = eachDieInfo.name; |
| aFunc->low_pc = eachDieInfo.low_pc; |
| aFunc->high_pc = eachDieInfo.high_pc; |
| } |
| |
| |
| if (eachDieInfo.sibling) |
| eachDie = stash->debug_section + eachDieInfo.sibling; |
| else |
| break; |
| } |
| |
| return TRUE; |
| } |
| |
| |
| |
| |
| static bfd_boolean |
| dwarf1_unit_find_nearest_line (struct dwarf1_debug* stash, |
| struct dwarf1_unit* aUnit, |
| unsigned long addr, |
| const char **filename_ptr, |
| const char **functionname_ptr, |
| unsigned int *linenumber_ptr) |
| { |
| int line_p = FALSE; |
| int func_p = FALSE; |
| |
| if (aUnit->low_pc <= addr && addr < aUnit->high_pc) |
| { |
| if (aUnit->has_stmt_list) |
| { |
| unsigned long i; |
| struct dwarf1_func* eachFunc; |
| |
| if (! aUnit->linenumber_table) |
| { |
| if (! parse_line_table (stash, aUnit)) |
| return FALSE; |
| } |
| |
| if (! aUnit->func_list) |
| { |
| if (! parse_functions_in_unit (stash, aUnit)) |
| return FALSE; |
| } |
| |
| for (i = 0; i < aUnit->line_count; i++) |
| { |
| if (aUnit->linenumber_table[i].addr <= addr |
| && addr < aUnit->linenumber_table[i+1].addr) |
| { |
| *filename_ptr = aUnit->name; |
| *linenumber_ptr = aUnit->linenumber_table[i].linenumber; |
| line_p = TRUE; |
| break; |
| } |
| } |
| |
| for (eachFunc = aUnit->func_list; |
| eachFunc; |
| eachFunc = eachFunc->prev) |
| { |
| if (eachFunc->low_pc <= addr |
| && addr < eachFunc->high_pc) |
| { |
| *functionname_ptr = eachFunc->name; |
| func_p = TRUE; |
| break; |
| } |
| } |
| } |
| } |
| |
| return line_p || func_p; |
| } |
| |
| |
| |
| |
| bfd_boolean |
| _bfd_dwarf1_find_nearest_line (bfd *abfd, |
| asymbol **symbols, |
| asection *section, |
| bfd_vma offset, |
| const char **filename_ptr, |
| const char **functionname_ptr, |
| unsigned int *linenumber_ptr) |
| { |
| struct dwarf1_debug *stash = elf_tdata (abfd)->dwarf1_find_line_info; |
| |
| struct dwarf1_unit* eachUnit; |
| |
| |
| unsigned long addr = (unsigned long)(offset + section->vma); |
| |
| *filename_ptr = NULL; |
| *functionname_ptr = NULL; |
| *linenumber_ptr = 0; |
| |
| if (! stash) |
| { |
| asection *msec; |
| bfd_size_type size = sizeof (struct dwarf1_debug); |
| |
| stash = elf_tdata (abfd)->dwarf1_find_line_info |
| = (struct dwarf1_debug *) bfd_zalloc (abfd, size); |
| |
| if (! stash) |
| return FALSE; |
| |
| msec = bfd_get_section_by_name (abfd, ".debug"); |
| if (! msec) |
| |
| |
| |
| return FALSE; |
| |
| size = msec->rawsize ? msec->rawsize : msec->size; |
| stash->debug_section |
| = bfd_simple_get_relocated_section_contents (abfd, msec, NULL, |
| symbols); |
| |
| if (! stash->debug_section) |
| return FALSE; |
| |
| stash->debug_section_end = stash->debug_section + size; |
| stash->currentDie = stash->debug_section; |
| stash->abfd = abfd; |
| stash->syms = symbols; |
| } |
| |
| |
| |
| |
| if (! stash->debug_section) |
| return FALSE; |
| |
| |
| |
| for (eachUnit = stash->lastUnit; eachUnit; eachUnit = eachUnit->prev) |
| if (eachUnit->low_pc <= addr && addr < eachUnit->high_pc) |
| return dwarf1_unit_find_nearest_line (stash, eachUnit, addr, |
| filename_ptr, |
| functionname_ptr, |
| linenumber_ptr); |
| |
| while (stash->currentDie < stash->debug_section_end) |
| { |
| struct die_info aDieInfo; |
| |
| if (! parse_die (stash->abfd, &aDieInfo, stash->currentDie, |
| stash->debug_section_end)) |
| return FALSE; |
| |
| if (aDieInfo.tag == TAG_compile_unit) |
| { |
| struct dwarf1_unit* aUnit |
| = alloc_dwarf1_unit (stash); |
| if (!aUnit) |
| return FALSE; |
| |
| aUnit->name = aDieInfo.name; |
| aUnit->low_pc = aDieInfo.low_pc; |
| aUnit->high_pc = aDieInfo.high_pc; |
| aUnit->has_stmt_list = aDieInfo.has_stmt_list; |
| aUnit->stmt_list_offset = aDieInfo.stmt_list_offset; |
| |
| |
| |
| if (aDieInfo.sibling |
| && stash->currentDie + aDieInfo.length |
| < stash->debug_section_end |
| && stash->currentDie + aDieInfo.length |
| != stash->debug_section + aDieInfo.sibling) |
| aUnit->first_child = stash->currentDie + aDieInfo.length; |
| else |
| aUnit->first_child = 0; |
| |
| if (aUnit->low_pc <= addr && addr < aUnit->high_pc) |
| return dwarf1_unit_find_nearest_line (stash, aUnit, addr, |
| filename_ptr, |
| functionname_ptr, |
| linenumber_ptr); |
| } |
| |
| if (aDieInfo.sibling != 0) |
| stash->currentDie = stash->debug_section + aDieInfo.sibling; |
| else |
| stash->currentDie += aDieInfo.length; |
| } |
| |
| return FALSE; |
| } |