Search in sources :

Example 31 with MemoryMap

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);
    }
}
Also used : MemoryMap(com.google.security.zynamics.binnavi.debug.models.processmanager.MemoryMap) MemorySection(com.google.security.zynamics.binnavi.debug.models.processmanager.MemorySection) FilledList(com.google.security.zynamics.zylib.types.lists.FilledList) ArrayList(java.util.ArrayList) IDebugger(com.google.security.zynamics.binnavi.debug.debugger.interfaces.IDebugger) IAddress(com.google.security.zynamics.zylib.disassembly.IAddress) ProcessManager(com.google.security.zynamics.binnavi.debug.models.processmanager.ProcessManager) CAddress(com.google.security.zynamics.zylib.disassembly.CAddress)

Example 32 with MemoryMap

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);
    }
}
Also used : MemoryMap(com.google.security.zynamics.binnavi.debug.models.processmanager.MemoryMap) MemorySection(com.google.security.zynamics.binnavi.debug.models.processmanager.MemorySection) IDebugger(com.google.security.zynamics.binnavi.debug.debugger.interfaces.IDebugger)

Aggregations

MemoryMap (com.google.security.zynamics.binnavi.debug.models.processmanager.MemoryMap)32 MemorySection (com.google.security.zynamics.binnavi.debug.models.processmanager.MemorySection)31 CAddress (com.google.security.zynamics.zylib.disassembly.CAddress)29 Test (org.junit.Test)26 MemoryMapReply (com.google.security.zynamics.binnavi.debug.connection.packets.replies.MemoryMapReply)19 TargetProcessThread (com.google.security.zynamics.binnavi.debug.models.processmanager.TargetProcessThread)19 ModuleTargetSettings (com.google.security.zynamics.binnavi.debug.debugger.ModuleTargetSettings)17 ArrayList (java.util.ArrayList)17 MockDebugger (com.google.security.zynamics.binnavi.Debug.Debugger.MockDebugger)16 DebuggerOptions (com.google.security.zynamics.binnavi.debug.models.targetinformation.DebuggerOptions)16 TargetInformation (com.google.security.zynamics.binnavi.debug.models.targetinformation.TargetInformation)16 RegisterDescription (com.google.security.zynamics.binnavi.debug.models.targetinformation.RegisterDescription)14 TargetInformationReply (com.google.security.zynamics.binnavi.debug.connection.packets.replies.TargetInformationReply)13 MemoryModule (com.google.security.zynamics.binnavi.debug.models.processmanager.MemoryModule)7 RegisterValue (com.google.security.zynamics.binnavi.debug.models.targetinformation.RegisterValue)6 RelocatedAddress (com.google.security.zynamics.binnavi.disassembly.RelocatedAddress)6 DetachReply (com.google.security.zynamics.binnavi.debug.connection.packets.replies.DetachReply)4 DebuggerException (com.google.security.zynamics.binnavi.debug.models.targetinformation.DebuggerException)4 FilledList (com.google.security.zynamics.zylib.types.lists.FilledList)4 IDebugger (com.google.security.zynamics.binnavi.debug.debugger.interfaces.IDebugger)3