forked from OSchip/llvm-project
make llvm-dwarfdump a little more resilient when parsing .debug_loc
sections. The call to data.getUnsigned(&Offset, AddressSize) only increments Offset if the read succeeds, which will result in an infinite loop. llvm-svn: 201179
This commit is contained in:
parent
68ccb3b6de
commit
6f84d31540
|
@ -36,7 +36,7 @@ void DWARFDebugLoc::dump(raw_ostream &OS) const {
|
||||||
|
|
||||||
void DWARFDebugLoc::parse(DataExtractor data, unsigned AddressSize) {
|
void DWARFDebugLoc::parse(DataExtractor data, unsigned AddressSize) {
|
||||||
uint32_t Offset = 0;
|
uint32_t Offset = 0;
|
||||||
while (data.isValidOffset(Offset)) {
|
while (data.isValidOffset(Offset+AddressSize-1)) {
|
||||||
Locations.resize(Locations.size() + 1);
|
Locations.resize(Locations.size() + 1);
|
||||||
LocationList &Loc = Locations.back();
|
LocationList &Loc = Locations.back();
|
||||||
Loc.Offset = Offset;
|
Loc.Offset = Offset;
|
||||||
|
@ -71,4 +71,6 @@ void DWARFDebugLoc::parse(DataExtractor data, unsigned AddressSize) {
|
||||||
Loc.Entries.push_back(llvm_move(E));
|
Loc.Entries.push_back(llvm_move(E));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (data.isValidOffset(Offset))
|
||||||
|
llvm::errs() << "error: failed to consume entire .debug_loc section\n";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue