1 //===- PDBFile.cpp - Low level interface to a PDB file ----------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "llvm/DebugInfo/PDB/Native/PDBFile.h" 11 #include "llvm/ADT/ArrayRef.h" 12 #include "llvm/ADT/STLExtras.h" 13 #include "llvm/DebugInfo/MSF/MSFCommon.h" 14 #include "llvm/DebugInfo/MSF/MappedBlockStream.h" 15 #include "llvm/DebugInfo/PDB/Native/DbiStream.h" 16 #include "llvm/DebugInfo/PDB/Native/GlobalsStream.h" 17 #include "llvm/DebugInfo/PDB/Native/InfoStream.h" 18 #include "llvm/DebugInfo/PDB/Native/PDBStringTable.h" 19 #include "llvm/DebugInfo/PDB/Native/PublicsStream.h" 20 #include "llvm/DebugInfo/PDB/Native/RawError.h" 21 #include "llvm/DebugInfo/PDB/Native/SymbolStream.h" 22 #include "llvm/DebugInfo/PDB/Native/TpiStream.h" 23 #include "llvm/Support/BinaryStream.h" 24 #include "llvm/Support/BinaryStreamArray.h" 25 #include "llvm/Support/BinaryStreamReader.h" 26 #include "llvm/Support/Endian.h" 27 #include "llvm/Support/Error.h" 28 #include "llvm/Support/Path.h" 29 #include <algorithm> 30 #include <cassert> 31 #include <cstdint> 32 33 using namespace llvm; 34 using namespace llvm::codeview; 35 using namespace llvm::msf; 36 using namespace llvm::pdb; 37 38 namespace { 39 typedef FixedStreamArray<support::ulittle32_t> ulittle_array; 40 } // end anonymous namespace 41 42 PDBFile::PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, 43 BumpPtrAllocator &Allocator) 44 : FilePath(Path), Allocator(Allocator), Buffer(std::move(PdbFileBuffer)) {} 45 46 PDBFile::~PDBFile() = default; 47 48 StringRef PDBFile::getFilePath() const { return FilePath; } 49 50 StringRef PDBFile::getFileDirectory() const { 51 return sys::path::parent_path(FilePath); 52 } 53 54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } 55 56 uint32_t PDBFile::getFreeBlockMapBlock() const { 57 return ContainerLayout.SB->FreeBlockMapBlock; 58 } 59 60 uint32_t PDBFile::getBlockCount() const { 61 return ContainerLayout.SB->NumBlocks; 62 } 63 64 uint32_t PDBFile::getNumDirectoryBytes() const { 65 return ContainerLayout.SB->NumDirectoryBytes; 66 } 67 68 uint32_t PDBFile::getBlockMapIndex() const { 69 return ContainerLayout.SB->BlockMapAddr; 70 } 71 72 uint32_t PDBFile::getUnknown1() const { return ContainerLayout.SB->Unknown1; } 73 74 uint32_t PDBFile::getNumDirectoryBlocks() const { 75 return msf::bytesToBlocks(ContainerLayout.SB->NumDirectoryBytes, 76 ContainerLayout.SB->BlockSize); 77 } 78 79 uint64_t PDBFile::getBlockMapOffset() const { 80 return (uint64_t)ContainerLayout.SB->BlockMapAddr * 81 ContainerLayout.SB->BlockSize; 82 } 83 84 uint32_t PDBFile::getNumStreams() const { 85 return ContainerLayout.StreamSizes.size(); 86 } 87 88 uint32_t PDBFile::getStreamByteSize(uint32_t StreamIndex) const { 89 return ContainerLayout.StreamSizes[StreamIndex]; 90 } 91 92 ArrayRef<support::ulittle32_t> 93 PDBFile::getStreamBlockList(uint32_t StreamIndex) const { 94 return ContainerLayout.StreamMap[StreamIndex]; 95 } 96 97 uint32_t PDBFile::getFileSize() const { return Buffer->getLength(); } 98 99 Expected<ArrayRef<uint8_t>> PDBFile::getBlockData(uint32_t BlockIndex, 100 uint32_t NumBytes) const { 101 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize()); 102 103 ArrayRef<uint8_t> Result; 104 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result)) 105 return std::move(EC); 106 return Result; 107 } 108 109 Error PDBFile::setBlockData(uint32_t BlockIndex, uint32_t Offset, 110 ArrayRef<uint8_t> Data) const { 111 return make_error<RawError>(raw_error_code::not_writable, 112 "PDBFile is immutable"); 113 } 114 115 Error PDBFile::parseFileHeaders() { 116 BinaryStreamReader Reader(*Buffer); 117 118 // Initialize SB. 119 const msf::SuperBlock *SB = nullptr; 120 if (auto EC = Reader.readObject(SB)) { 121 consumeError(std::move(EC)); 122 return make_error<RawError>(raw_error_code::corrupt_file, 123 "Does not contain superblock"); 124 } 125 126 if (auto EC = msf::validateSuperBlock(*SB)) 127 return EC; 128 129 if (Buffer->getLength() % SB->BlockSize != 0) 130 return make_error<RawError>(raw_error_code::corrupt_file, 131 "File size is not a multiple of block size"); 132 ContainerLayout.SB = SB; 133 134 // Initialize Free Page Map. 135 ContainerLayout.FreePageMap.resize(SB->NumBlocks); 136 // The Fpm exists either at block 1 or block 2 of the MSF. However, this 137 // allows for a maximum of getBlockSize() * 8 blocks bits in the Fpm, and 138 // thusly an equal number of total blocks in the file. For a block size 139 // of 4KiB (very common), this would yield 32KiB total blocks in file, for a 140 // maximum file size of 32KiB * 4KiB = 128MiB. Obviously this won't do, so 141 // the Fpm is split across the file at `getBlockSize()` intervals. As a 142 // result, every block whose index is of the form |{1,2} + getBlockSize() * k| 143 // for any non-negative integer k is an Fpm block. In theory, we only really 144 // need to reserve blocks of the form |{1,2} + getBlockSize() * 8 * k|, but 145 // current versions of the MSF format already expect the Fpm to be arranged 146 // at getBlockSize() intervals, so we have to be compatible. 147 // See the function fpmPn() for more information: 148 // https://github.com/Microsoft/microsoft-pdb/blob/master/PDB/msf/msf.cpp#L489 149 auto FpmStream = MappedBlockStream::createFpmStream(ContainerLayout, *Buffer); 150 BinaryStreamReader FpmReader(*FpmStream); 151 ArrayRef<uint8_t> FpmBytes; 152 if (auto EC = FpmReader.readBytes(FpmBytes, 153 msf::getFullFpmByteSize(ContainerLayout))) 154 return EC; 155 uint32_t BlocksRemaining = getBlockCount(); 156 uint32_t BI = 0; 157 for (auto Byte : FpmBytes) { 158 uint32_t BlocksThisByte = std::min(BlocksRemaining, 8U); 159 for (uint32_t I = 0; I < BlocksThisByte; ++I) { 160 if (Byte & (1 << I)) 161 ContainerLayout.FreePageMap[BI] = true; 162 --BlocksRemaining; 163 ++BI; 164 } 165 } 166 167 Reader.setOffset(getBlockMapOffset()); 168 if (auto EC = Reader.readArray(ContainerLayout.DirectoryBlocks, 169 getNumDirectoryBlocks())) 170 return EC; 171 172 return Error::success(); 173 } 174 175 Error PDBFile::parseStreamData() { 176 assert(ContainerLayout.SB); 177 if (DirectoryStream) 178 return Error::success(); 179 180 uint32_t NumStreams = 0; 181 182 // Normally you can't use a MappedBlockStream without having fully parsed the 183 // PDB file, because it accesses the directory and various other things, which 184 // is exactly what we are attempting to parse. By specifying a custom 185 // subclass of IPDBStreamData which only accesses the fields that have already 186 // been parsed, we can avoid this and reuse MappedBlockStream. 187 auto DS = MappedBlockStream::createDirectoryStream(ContainerLayout, *Buffer); 188 BinaryStreamReader Reader(*DS); 189 if (auto EC = Reader.readInteger(NumStreams)) 190 return EC; 191 192 if (auto EC = Reader.readArray(ContainerLayout.StreamSizes, NumStreams)) 193 return EC; 194 for (uint32_t I = 0; I < NumStreams; ++I) { 195 uint32_t StreamSize = getStreamByteSize(I); 196 // FIXME: What does StreamSize ~0U mean? 197 uint64_t NumExpectedStreamBlocks = 198 StreamSize == UINT32_MAX 199 ? 0 200 : msf::bytesToBlocks(StreamSize, ContainerLayout.SB->BlockSize); 201 202 // For convenience, we store the block array contiguously. This is because 203 // if someone calls setStreamMap(), it is more convenient to be able to call 204 // it with an ArrayRef instead of setting up a StreamRef. Since the 205 // DirectoryStream is cached in the class and thus lives for the life of the 206 // class, we can be guaranteed that readArray() will return a stable 207 // reference, even if it has to allocate from its internal pool. 208 ArrayRef<support::ulittle32_t> Blocks; 209 if (auto EC = Reader.readArray(Blocks, NumExpectedStreamBlocks)) 210 return EC; 211 for (uint32_t Block : Blocks) { 212 uint64_t BlockEndOffset = 213 (uint64_t)(Block + 1) * ContainerLayout.SB->BlockSize; 214 if (BlockEndOffset > getFileSize()) 215 return make_error<RawError>(raw_error_code::corrupt_file, 216 "Stream block map is corrupt."); 217 } 218 ContainerLayout.StreamMap.push_back(Blocks); 219 } 220 221 // We should have read exactly SB->NumDirectoryBytes bytes. 222 assert(Reader.bytesRemaining() == 0); 223 DirectoryStream = std::move(DS); 224 return Error::success(); 225 } 226 227 ArrayRef<support::ulittle32_t> PDBFile::getDirectoryBlockArray() const { 228 return ContainerLayout.DirectoryBlocks; 229 } 230 231 Expected<GlobalsStream &> PDBFile::getPDBGlobalsStream() { 232 if (!Globals) { 233 auto DbiS = getPDBDbiStream(); 234 if (!DbiS) 235 return DbiS.takeError(); 236 237 auto GlobalS = safelyCreateIndexedStream( 238 ContainerLayout, *Buffer, DbiS->getGlobalSymbolStreamIndex()); 239 if (!GlobalS) 240 return GlobalS.takeError(); 241 auto TempGlobals = llvm::make_unique<GlobalsStream>(std::move(*GlobalS)); 242 if (auto EC = TempGlobals->reload()) 243 return std::move(EC); 244 Globals = std::move(TempGlobals); 245 } 246 return *Globals; 247 } 248 249 Expected<InfoStream &> PDBFile::getPDBInfoStream() { 250 if (!Info) { 251 auto InfoS = safelyCreateIndexedStream(ContainerLayout, *Buffer, StreamPDB); 252 if (!InfoS) 253 return InfoS.takeError(); 254 auto TempInfo = llvm::make_unique<InfoStream>(std::move(*InfoS)); 255 if (auto EC = TempInfo->reload()) 256 return std::move(EC); 257 Info = std::move(TempInfo); 258 } 259 return *Info; 260 } 261 262 Expected<DbiStream &> PDBFile::getPDBDbiStream() { 263 if (!Dbi) { 264 auto DbiS = safelyCreateIndexedStream(ContainerLayout, *Buffer, StreamDBI); 265 if (!DbiS) 266 return DbiS.takeError(); 267 auto TempDbi = llvm::make_unique<DbiStream>(*this, std::move(*DbiS)); 268 if (auto EC = TempDbi->reload()) 269 return std::move(EC); 270 Dbi = std::move(TempDbi); 271 } 272 return *Dbi; 273 } 274 275 Expected<TpiStream &> PDBFile::getPDBTpiStream() { 276 if (!Tpi) { 277 auto TpiS = safelyCreateIndexedStream(ContainerLayout, *Buffer, StreamTPI); 278 if (!TpiS) 279 return TpiS.takeError(); 280 auto TempTpi = llvm::make_unique<TpiStream>(*this, std::move(*TpiS)); 281 if (auto EC = TempTpi->reload()) 282 return std::move(EC); 283 Tpi = std::move(TempTpi); 284 } 285 return *Tpi; 286 } 287 288 Expected<TpiStream &> PDBFile::getPDBIpiStream() { 289 if (!Ipi) { 290 auto IpiS = safelyCreateIndexedStream(ContainerLayout, *Buffer, StreamIPI); 291 if (!IpiS) 292 return IpiS.takeError(); 293 auto TempIpi = llvm::make_unique<TpiStream>(*this, std::move(*IpiS)); 294 if (auto EC = TempIpi->reload()) 295 return std::move(EC); 296 Ipi = std::move(TempIpi); 297 } 298 return *Ipi; 299 } 300 301 Expected<PublicsStream &> PDBFile::getPDBPublicsStream() { 302 if (!Publics) { 303 auto DbiS = getPDBDbiStream(); 304 if (!DbiS) 305 return DbiS.takeError(); 306 307 auto PublicS = safelyCreateIndexedStream( 308 ContainerLayout, *Buffer, DbiS->getPublicSymbolStreamIndex()); 309 if (!PublicS) 310 return PublicS.takeError(); 311 auto TempPublics = 312 llvm::make_unique<PublicsStream>(*this, std::move(*PublicS)); 313 if (auto EC = TempPublics->reload()) 314 return std::move(EC); 315 Publics = std::move(TempPublics); 316 } 317 return *Publics; 318 } 319 320 Expected<SymbolStream &> PDBFile::getPDBSymbolStream() { 321 if (!Symbols) { 322 auto DbiS = getPDBDbiStream(); 323 if (!DbiS) 324 return DbiS.takeError(); 325 326 uint32_t SymbolStreamNum = DbiS->getSymRecordStreamIndex(); 327 auto SymbolS = 328 safelyCreateIndexedStream(ContainerLayout, *Buffer, SymbolStreamNum); 329 if (!SymbolS) 330 return SymbolS.takeError(); 331 332 auto TempSymbols = llvm::make_unique<SymbolStream>(std::move(*SymbolS)); 333 if (auto EC = TempSymbols->reload()) 334 return std::move(EC); 335 Symbols = std::move(TempSymbols); 336 } 337 return *Symbols; 338 } 339 340 Expected<PDBStringTable &> PDBFile::getStringTable() { 341 if (!Strings) { 342 auto IS = getPDBInfoStream(); 343 if (!IS) 344 return IS.takeError(); 345 346 uint32_t NameStreamIndex = IS->getNamedStreamIndex("/names"); 347 348 auto NS = 349 safelyCreateIndexedStream(ContainerLayout, *Buffer, NameStreamIndex); 350 if (!NS) 351 return NS.takeError(); 352 353 auto N = llvm::make_unique<PDBStringTable>(); 354 BinaryStreamReader Reader(**NS); 355 if (auto EC = N->reload(Reader)) 356 return std::move(EC); 357 assert(Reader.bytesRemaining() == 0); 358 StringTableStream = std::move(*NS); 359 Strings = std::move(N); 360 } 361 return *Strings; 362 } 363 364 bool PDBFile::hasPDBDbiStream() const { return StreamDBI < getNumStreams(); } 365 366 bool PDBFile::hasPDBGlobalsStream() { 367 auto DbiS = getPDBDbiStream(); 368 if (!DbiS) 369 return false; 370 return DbiS->getGlobalSymbolStreamIndex() < getNumStreams(); 371 } 372 373 bool PDBFile::hasPDBInfoStream() { return StreamPDB < getNumStreams(); } 374 375 bool PDBFile::hasPDBIpiStream() const { return StreamIPI < getNumStreams(); } 376 377 bool PDBFile::hasPDBPublicsStream() { 378 auto DbiS = getPDBDbiStream(); 379 if (!DbiS) 380 return false; 381 return DbiS->getPublicSymbolStreamIndex() < getNumStreams(); 382 } 383 384 bool PDBFile::hasPDBSymbolStream() { 385 auto DbiS = getPDBDbiStream(); 386 if (!DbiS) 387 return false; 388 return DbiS->getSymRecordStreamIndex() < getNumStreams(); 389 } 390 391 bool PDBFile::hasPDBTpiStream() const { return StreamTPI < getNumStreams(); } 392 393 bool PDBFile::hasPDBStringTable() { 394 auto IS = getPDBInfoStream(); 395 if (!IS) 396 return false; 397 return IS->getNamedStreamIndex("/names") < getNumStreams(); 398 } 399 400 /// Wrapper around MappedBlockStream::createIndexedStream() that checks if a 401 /// stream with that index actually exists. If it does not, the return value 402 /// will have an MSFError with code msf_error_code::no_stream. Else, the return 403 /// value will contain the stream returned by createIndexedStream(). 404 Expected<std::unique_ptr<MappedBlockStream>> 405 PDBFile::safelyCreateIndexedStream(const MSFLayout &Layout, 406 BinaryStreamRef MsfData, 407 uint32_t StreamIndex) const { 408 if (StreamIndex >= getNumStreams()) 409 return make_error<RawError>(raw_error_code::no_stream); 410 return MappedBlockStream::createIndexedStream(Layout, MsfData, StreamIndex); 411 } 412