forked from OSchip/llvm-project
Fix use after free in PDB linker.
When merging in types from a type server PDB, we would use a pointer into the type server PDB's mapped file buffer directly to avoid copying data. However, we would close the type server PDB after we finished merging in its types, which would unmap all of its memory. This would lead to a use after free. We fix this by making a strong reference in the PDBLinker class to all referenced type server PDBs, thereby making it safe to hold pointers into its memory mapped contents. This fixes llvm.org/pr36455 Differential Revision: https://reviews.llvm.org/D43834 llvm-svn: 326345
This commit is contained in:
parent
367bfce611
commit
3868cfd503
|
@ -148,6 +148,11 @@ private:
|
|||
|
||||
llvm::SmallString<128> NativePath;
|
||||
|
||||
/// A list of other PDBs which are loaded during the linking process and which
|
||||
/// we need to keep around since the linking operation may reference pointers
|
||||
/// inside of these PDBs.
|
||||
llvm::SmallVector<std::unique_ptr<pdb::NativeSession>, 2> LoadedPDBs;
|
||||
|
||||
std::vector<pdb::SecMapEntry> SectionMap;
|
||||
|
||||
/// Type index mappings of type server PDBs that we've loaded so far.
|
||||
|
@ -361,10 +366,16 @@ Expected<const CVIndexMap&> PDBLinker::maybeMergeTypeServerPDB(ObjFile *File,
|
|||
return std::move(E);
|
||||
}
|
||||
|
||||
auto ExpectedTpi = (*ExpectedSession)->getPDBFile().getPDBTpiStream();
|
||||
pdb::NativeSession *Session = ExpectedSession->get();
|
||||
|
||||
// Keep a strong reference to this PDB, so that it's safe to hold pointers
|
||||
// into the file.
|
||||
LoadedPDBs.push_back(std::move(*ExpectedSession));
|
||||
|
||||
auto ExpectedTpi = Session->getPDBFile().getPDBTpiStream();
|
||||
if (auto E = ExpectedTpi.takeError())
|
||||
fatal("Type server does not have TPI stream: " + toString(std::move(E)));
|
||||
auto ExpectedIpi = (*ExpectedSession)->getPDBFile().getPDBIpiStream();
|
||||
auto ExpectedIpi = Session->getPDBFile().getPDBIpiStream();
|
||||
if (auto E = ExpectedIpi.takeError())
|
||||
fatal("Type server does not have TPI stream: " + toString(std::move(E)));
|
||||
|
||||
|
|
Loading…
Reference in New Issue