use of com.google.security.zynamics.binnavi.debug.models.processmanager.MemoryMap in project binnavi by google.
the class CMemorySelectionFunctions method askMemoryRange.
/**
* Asks the user for a memory range and displays it afterwards.
*
* @param dlg Dialog where the user can select a range.
* @param debugPerspectiveModel Describes the debug GUI perspective where the refresh action takes
* place.
*/
public static void askMemoryRange(final CMemoryRangeDialog dlg, final CDebugPerspectiveModel debugPerspectiveModel) {
final IDebugger debugger = debugPerspectiveModel.getCurrentSelectedDebugger();
if (debugger == null) {
return;
}
dlg.setVisible(true);
final IAddress start = dlg.getStart();
final IAddress numberOfBytes = dlg.getBytes();
if (start != null && numberOfBytes != null) {
debugPerspectiveModel.setActiveMemoryAddress(start, true);
final ProcessManager pmanager = debugger.getProcessManager();
pmanager.setMemoryMap(new MemoryMap(new FilledList<MemorySection>()));
pmanager.getMemory().clear();
final ArrayList<MemorySection> sections = new ArrayList<MemorySection>();
sections.add(new MemorySection(start, new CAddress(start.toBigInteger().add(numberOfBytes.toBigInteger()).subtract(BigInteger.ONE))));
final MemoryMap map = new MemoryMap(sections);
pmanager.setMemoryMap(map);
}
}
use of com.google.security.zynamics.binnavi.debug.models.processmanager.MemoryMap in project binnavi by google.
the class CModulesPanelFunctions method gotoModule.
/**
* Displays the beginning of a module in the memory viewer.
*
* @param parent Parent window used for dialogs.
* @param debugPerspectiveModel Debug perspective model that provides the active debugger.
* @param module The module to show in the memory viewer.
*/
public static void gotoModule(final Window parent, final CDebugPerspectiveModel debugPerspectiveModel, final MemoryModule module) {
Preconditions.checkNotNull(parent, "IE01462: Parent argument can not be null");
Preconditions.checkNotNull(debugPerspectiveModel, "IE01463: Debug perspective model argument can not be null");
Preconditions.checkNotNull(module, "IE01464: Module argument can not be null");
final IDebugger debugger = debugPerspectiveModel.getCurrentSelectedDebugger();
if (debugger == null) {
return;
}
final MemoryMap memoryMap = debugger.getProcessManager().getMemoryMap();
final MemorySection section = ProcessHelpers.getSectionWith(memoryMap, module.getBaseAddress().getAddress());
if (section == null) {
final String message = String.format("E00046: " + "Could not display module '%s' in the memory view", module.getName());
final String description = String.format("The module '%s' could not be displayed in the memory view because " + "the offset %s is not currently known to BinNavi. " + "Try refreshing the memory map to fix this issue.", module.getName(), module.getBaseAddress());
NaviErrorDialog.show(parent, message, description);
} else {
CMemoryFunctions.gotoOffset(debugPerspectiveModel, module.getBaseAddress().getAddress(), true);
}
}
Aggregations