mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-3316 - PDB developer script to apply to empty program
This commit is contained in:
parent
3f13d99079
commit
815a38b4fe
2 changed files with 106 additions and 3 deletions
|
@ -0,0 +1,98 @@
|
||||||
|
/* ###
|
||||||
|
* IP: GHIDRA
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
// Apply PDB information from AbstractPdb to a dummy program -- for PDB developer use.
|
||||||
|
//
|
||||||
|
//@category PDB
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import ghidra.app.script.GhidraScript;
|
||||||
|
import ghidra.app.services.ProgramManager;
|
||||||
|
import ghidra.app.util.bin.format.pdb2.pdbreader.*;
|
||||||
|
import ghidra.app.util.importer.MessageLog;
|
||||||
|
import ghidra.app.util.pdb.pdbapplicator.DefaultPdbApplicator;
|
||||||
|
import ghidra.app.util.pdb.pdbapplicator.PdbApplicatorOptions;
|
||||||
|
import ghidra.program.database.ProgramDB;
|
||||||
|
import ghidra.program.model.lang.Language;
|
||||||
|
import ghidra.program.model.lang.LanguageService;
|
||||||
|
import ghidra.program.model.lang.Processor;
|
||||||
|
import ghidra.program.model.mem.Memory;
|
||||||
|
import ghidra.program.util.DefaultLanguageService;
|
||||||
|
import ghidra.util.Msg;
|
||||||
|
|
||||||
|
public class PdbDeveloperApplyDummyScript extends GhidraScript {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void run() throws Exception {
|
||||||
|
File pdbFile = askFile("Choose a PDB file", "OK");
|
||||||
|
if (pdbFile == null) {
|
||||||
|
Msg.info(this, "Canceled execution due to no input file");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!pdbFile.exists()) {
|
||||||
|
String message = pdbFile.getAbsolutePath() + " is not a valid file.";
|
||||||
|
Msg.info(this, message);
|
||||||
|
popup(message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
String pdbFileName = pdbFile.getAbsolutePath();
|
||||||
|
if (!pdbFileName.endsWith(".pdb") && !pdbFileName.endsWith(".PDB")) {
|
||||||
|
String message = "Aborting: Expected input file to have extension of type .pdb (got '" +
|
||||||
|
pdbFileName + "').";
|
||||||
|
Msg.info(this, message);
|
||||||
|
popup(message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
MessageLog log = new MessageLog();
|
||||||
|
|
||||||
|
// Can do more with various reader and applicator options here
|
||||||
|
PdbReaderOptions pdbReaderOptions = new PdbReaderOptions();
|
||||||
|
PdbApplicatorOptions pdbApplicatorOptions = new PdbApplicatorOptions();
|
||||||
|
|
||||||
|
LanguageService ls = DefaultLanguageService.getLanguageService();
|
||||||
|
Processor processor_x86 = Processor.findOrPossiblyCreateProcessor("x86");
|
||||||
|
Language x86 = ls.getDefaultLanguage(processor_x86);
|
||||||
|
ProgramDB program = new ProgramDB("Test", x86, x86.getDefaultCompilerSpec(), this);
|
||||||
|
|
||||||
|
ProgramManager programManager = state.getTool().getService(ProgramManager.class);
|
||||||
|
programManager.openProgram(program);
|
||||||
|
|
||||||
|
int txID = program.startTransaction("ApplyPDB");
|
||||||
|
Memory memory = program.getMemory();
|
||||||
|
memory.createUninitializedBlock(pdbFileName, program.getImageBase(),
|
||||||
|
Memory.MAX_BLOCK_SIZE / 16, false);
|
||||||
|
|
||||||
|
try (AbstractPdb pdb = PdbParser.parse(pdbFile.getPath(), pdbReaderOptions, monitor)) {
|
||||||
|
monitor.setMessage("PDB: Parsing " + pdbFile + "...");
|
||||||
|
pdb.deserialize();
|
||||||
|
DefaultPdbApplicator applicator = new DefaultPdbApplicator(pdb);
|
||||||
|
applicator.applyTo(program, program.getDataTypeManager(), program.getImageBase(),
|
||||||
|
pdbApplicatorOptions, log);
|
||||||
|
}
|
||||||
|
catch (PdbException | IOException e) {
|
||||||
|
log.appendMsg(getClass().getName(),
|
||||||
|
"Issue processing PDB file: " + pdbFile + ":\n " + e.toString());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
finally {
|
||||||
|
program.endTransaction(txID, true);
|
||||||
|
program.release(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -355,10 +355,15 @@ public class FunctionSymbolApplier extends MsSymbolApplier {
|
||||||
private Function createFunctionCommand(TaskMonitor monitor) {
|
private Function createFunctionCommand(TaskMonitor monitor) {
|
||||||
CreateFunctionCmd funCmd = new CreateFunctionCmd(address);
|
CreateFunctionCmd funCmd = new CreateFunctionCmd(address);
|
||||||
if (!funCmd.applyTo(applicator.getProgram(), monitor)) {
|
if (!funCmd.applyTo(applicator.getProgram(), monitor)) {
|
||||||
applicator.appendLogMsg("Failed to apply function at address " + address.toString() +
|
funCmd = new CreateFunctionCmd(null, address, new AddressSet(address, address),
|
||||||
|
SourceType.DEFAULT);
|
||||||
|
if (!funCmd.applyTo(applicator.getProgram(), monitor)) {
|
||||||
|
applicator
|
||||||
|
.appendLogMsg("Failed to apply function at address " + address.toString() +
|
||||||
"; attempting to use possible existing function");
|
"; attempting to use possible existing function");
|
||||||
return applicator.getProgram().getListing().getFunctionAt(address);
|
return applicator.getProgram().getListing().getFunctionAt(address);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return funCmd.getFunction();
|
return funCmd.getFunction();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue