-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for mixed version loclists, tests (#521)
- Loading branch information
Showing
7 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#------------------------------------------------------------------------------- | ||
# elftools tests | ||
# | ||
# Seva Alekseyev ([email protected]) | ||
# This code is in the public domain | ||
#------------------------------------------------------------------------------- | ||
import unittest | ||
import os | ||
from elftools.dwarf.locationlists import LocationListsPair, LocationParser | ||
from elftools.elf.elffile import ELFFile | ||
|
||
class TestLocListsPair(unittest.TestCase): | ||
def test_llpair(self): | ||
path = os.path.join('test', 'testfiles_for_unittests', | ||
'dwarf_llpair.elf') | ||
with open(path, 'rb') as f: | ||
elffile = ELFFile(f) | ||
dwarfinfo = elffile.get_dwarf_info(follow_links=False) | ||
# This binary has both V4- loclists and V5+ loclists | ||
self.assertTrue(dwarfinfo.debug_loc_sec and dwarfinfo.debug_loclists_sec) | ||
# On this binary, it's a pair object | ||
llp = dwarfinfo.location_lists() | ||
self.assertTrue(isinstance(llp, LocationListsPair)) | ||
locparser = LocationParser(llp) | ||
|
||
CUs = list(dwarfinfo.iter_CUs()) | ||
|
||
# The first CU is the v5 one | ||
# Just in case, make sure we can hit a loclist in a V5 section | ||
CU = CUs[0] | ||
self.assertTrue(CU.header.version == 5) | ||
# DW_TAG_variable for i inside b() | ||
die = next(die for die in CU.iter_DIEs() if die.offset == 0x333) | ||
ll = locparser.parse_from_attribute(die.attributes['DW_AT_location'], CU.header.version, die=die) | ||
self.assertTrue(len(ll) == 8) | ||
|
||
# The second CU is the V2 one | ||
# Now hit a loclist in a V4- sectoin | ||
# This would fail before 11/15/2023 | ||
CU = CUs[1] | ||
self.assertTrue(CU.header.version == 2) | ||
# DW_TAG_variable for i inside a() | ||
die = next(die for die in CU.iter_DIEs() if die.offset == 0x796) | ||
ll = locparser.parse_from_attribute(die.attributes['DW_AT_location'], CU.header.version, die=die) | ||
self.assertTrue(len(ll) == 7) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
To compile: | ||
Linux x86-64 | ||
gcc version 8.3.0 | ||
gcc -gdwarf-2 -O2 -c llpaira.c | ||
gcc -gdwarf-5 -O2 -o dwarf_llpair.elf llpair.c llpaira.o | ||
*/ | ||
#include <stdlib.h> | ||
#include <stdio.h> | ||
|
||
extern void a(int n); | ||
|
||
void b(int n) | ||
{ | ||
int i; | ||
for(i=0;i<n;i++) | ||
printf("%d\n", i*i); | ||
printf("%d\n", rand()*rand()*rand() + rand()*rand() + rand()); | ||
for(i=0;i<10;i++) | ||
printf("%d\n", i*i+76543*i); | ||
printf("%d\n", n); | ||
} | ||
|
||
int main() | ||
{ | ||
b(rand()); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include <stdio.h> | ||
void a(int n) | ||
{ | ||
int i; | ||
for(i=0;i<n;i++) | ||
printf("%d\n", i*i); | ||
for(i=0;i<10;i++) | ||
printf("%d\n", i*i+76543*i); | ||
printf("%d\n", n); | ||
} |
Binary file not shown.