A program database (PDB) file holds debugging and project state information about programs
compiled using a Microsoft compiler and written in C/C++
, C#
, and
Visual Basic
. A user generates a PDB file using the /ZI or /Zi
flag
(for C/C++ programs) or the /debug
flag (for Visual Basic/C# programs).
Ghidra uses the DIA SDK to read information from the PDB file. Therefore, Ghidra can only load *.PDB files while running on Windows platforms. However, while on Windows, the user may create *.PDB.XML files that can be loaded on non-Windows platforms. *.PDB.XML files can be created in three different ways:
- From the Ghidra GUI in Windows, use the Ghidra Script Manager to run the CreatePdbXmlFilesScript.java script. Follow the prompts to choose the .PDB file (or directory containing .PDB file(s)) to be converted to .PDB.XML form. When given a directory, the script recursively traverses all subfolders to find .PDB files. A created .PDB.XML file is placed in the same location as the corresponding original .PDB file.
- From a Windows command line, navigate to the following directory: <ghidra install root>/support and run the createPdbXmlFiles.bat script. The script takes one argument representing either one .PDB file or a directory of .PDB files. When given a directory, the script recursively traverses all subdirectories to find .PDB files. A created .PDB.XML file is placed in the same location as the corresponding original .PDB file. Sample calls to the script are shown below.
createPdbXmlFiles.bat C:\Symbols\samplePdb.pdb
createPdbXmlFiles.bat C:\Symbols
- Run the included pdb.exe executable (found in the <ghidra install root>/Ghidra/Features/PDB/os/win64 directory) and redirect (save) its output to an XML file as shown below:
pdb.exe samplePdb.pdb > samplePdb.pdb.xml
NOTE: Execution of pdb.exe has runtime dependencies which must be satisfied. Please refer to the README_PDB document for details.
- Structure and union definitions
- Typedefs
- Enumerations
- Class definitions
- Function prototypes
- Stack variable names and data types
- Source line numbers
- Instruction and data symbols
- From the menu-bar of a tool, select File
Load PDB File
- In the file chooser, select the PDB file (*.PDB for Windows and *.PDB.XML for other platforms)
- Click the "Select PDB" button
PDB files may also be loaded using the PDB Analyzer, which is available through Auto Analysis or as a One Shot Analyzer.
Before the PDB file is loaded into the program, then PDB signature and age are matched against the information stored in the executable. If these values do not match, then the PDB will not be loaded.
Figure 1
The Microsoft Debug Interface Access Software Development Kit (DIA SDK) provides access to debug information stored in program database (.PDB) files generated by Microsoft post-compiler tools. Because the format of the .PDB file generated by the post-compiler tools undergoes constant revision, exposing the format is impractical. Using the DIA API, you can develop applications that search for and browse debug information stored in a .PDB file. Such applications could, for example, report stack trace-back information and analyze performance data.
If you are attempting to load a PDB on a Windows machine and see an error message such as "Unable to locate the DIA SDK," you will need to add and register one or more files on your computer. Refer to the README_PDB document for detailed instructions.