/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "memoryagent.h" #include "memoryview.h" #include "breakhandler.h" #include "debuggerengine.h" #include "debuggerstartparameters.h" #include "debuggercore.h" #include "debuggerinternalconstants.h" #include #include #include #include #include #include #include #include using namespace Core; namespace Debugger { namespace Internal { /////////////////////////////////////////////////////////////////////// // // MemoryAgent // /////////////////////////////////////////////////////////////////////// /*! \class Debugger::Internal::MemoryAgent Objects form this class are created in response to user actions in the Gui for showing raw memory from the inferior. After creation it handles communication between the engine and the bineditor. Memory can be shown as \list \li Editor: Create an IEditor using the normal editor factory interface (m_editors) \li View: Separate top-level view consisting of a Bin Editor widget (m_view). \endlist Views are updated on the DebuggerEngine::stackFrameCompleted signal. An exception are views of class Debugger::RegisterMemoryView tracking the content pointed to by a register (eg stack pointer, instruction pointer). They are connected to the set/changed signals of the engine's register handler. \sa Debugger::MemoryView, Debugger::RegisterMemoryView */ MemoryAgent::MemoryAgent(DebuggerEngine *engine) : QObject(engine), m_engine(engine) { QTC_CHECK(engine); connect(engine, SIGNAL(stateChanged(Debugger::DebuggerState)), this, SLOT(engineStateChanged(Debugger::DebuggerState))); connect(engine, SIGNAL(stackFrameCompleted()), this, SLOT(updateContents())); } MemoryAgent::~MemoryAgent() { closeEditors(); closeViews(); } void MemoryAgent::closeEditors() { if (m_editors.isEmpty()) return; QList editors; foreach (QPointer editor, m_editors) if (editor) editors.append(editor.data()); EditorManager::closeEditors(editors); m_editors.clear(); } void MemoryAgent::closeViews() { foreach (const QPointer &w, m_views) if (w) w->close(); m_views.clear(); } void MemoryAgent::updateMemoryView(quint64 address, quint64 length) { m_engine->fetchMemory(this, sender(), address, length); } void MemoryAgent::connectBinEditorWidget(QWidget *w) { connect(w, SIGNAL(dataRequested(quint64)), SLOT(fetchLazyData(quint64))); connect(w, SIGNAL(newWindowRequested(quint64)), SLOT(createBinEditor(quint64))); connect(w, SIGNAL(newRangeRequested(quint64)), SLOT(provideNewRange(quint64))); connect(w, SIGNAL(dataChanged(quint64,QByteArray)), SLOT(handleDataChanged(quint64,QByteArray))); connect(w, SIGNAL(dataChanged(quint64,QByteArray)), SLOT(handleDataChanged(quint64,QByteArray))); connect(w, SIGNAL(addWatchpointRequested(quint64,uint)), SLOT(handleWatchpointRequest(quint64,uint))); } bool MemoryAgent::doCreateBinEditor(quint64 addr, unsigned flags, const QList &ml, const QPoint &pos, QString title, QWidget *parent) { const bool readOnly = (flags & DebuggerEngine::MemoryReadOnly) != 0; if (title.isEmpty()) title = tr("Memory at 0x%1").arg(addr, 0, 16); // Separate view? if (flags & DebuggerEngine::MemoryView) { // Ask BIN editor plugin for factory service and have it create a bin editor widget. QWidget *binEditor = 0; if (QObject *factory = ExtensionSystem::PluginManager::getObjectByClassName(QLatin1String("BINEditor::BinEditorWidgetFactory"))) binEditor = ExtensionSystem::invoke(factory, "createWidget", (QWidget *)0); if (!binEditor) return false; connectBinEditorWidget(binEditor); MemoryView::setBinEditorReadOnly(binEditor, readOnly); MemoryView::setBinEditorNewWindowRequestAllowed(binEditor, true); MemoryView *topLevel = 0; // Memory view tracking register value, providing its own updating mechanism. if (flags & DebuggerEngine::MemoryTrackRegister) { RegisterMemoryView *rmv = new RegisterMemoryView(binEditor, parent); rmv->init(m_engine->registerHandler(), int(addr)); topLevel = rmv; } else { // Ordinary memory view MemoryView::setBinEditorMarkup(binEditor, ml); MemoryView::setBinEditorRange(binEditor, addr, MemoryAgent::DataRange, MemoryAgent::BinBlockSize); topLevel = new MemoryView(binEditor, parent); topLevel->setWindowTitle(title); } m_views << topLevel; topLevel->move(pos); topLevel->show(); return true; } // Editor: Register tracking not supported. QTC_ASSERT(!(flags & DebuggerEngine::MemoryTrackRegister), return false); if (!title.endsWith(QLatin1Char('$'))) title.append(QLatin1String(" $")); IEditor *editor = EditorManager::openEditorWithContents( Core::Constants::K_DEFAULT_BINARY_EDITOR_ID, &title); if (!editor) return false; editor->document()->setProperty(Constants::OPENED_BY_DEBUGGER, QVariant(true)); editor->document()->setTemporary(true); QWidget *editorBinEditor = editor->widget(); connectBinEditorWidget(editorBinEditor); MemoryView::setBinEditorReadOnly(editorBinEditor, readOnly); MemoryView::setBinEditorNewWindowRequestAllowed(editorBinEditor, true); MemoryView::setBinEditorRange(editorBinEditor, addr, MemoryAgent::DataRange, MemoryAgent::BinBlockSize); MemoryView::setBinEditorMarkup(editorBinEditor, ml); m_editors << editor; return true; } void MemoryAgent::createBinEditor(quint64 addr, unsigned flags, const QList &ml, const QPoint &pos, const QString &title, QWidget *parent) { if (!doCreateBinEditor(addr, flags, ml, pos, title, parent)) showMessageBox(QMessageBox::Warning, tr("No Memory Viewer Available"), tr("The memory contents cannot be shown as no viewer plugin " "for binary data has been loaded.")); } void MemoryAgent::createBinEditor(quint64 addr) { createBinEditor(addr, 0, QList(), QPoint(), QString(), 0); } void MemoryAgent::fetchLazyData(quint64 block) { m_engine->fetchMemory(this, sender(), BinBlockSize * block, BinBlockSize); } void MemoryAgent::addLazyData(QObject *editorToken, quint64 addr, const QByteArray &ba) { QWidget *w = qobject_cast(editorToken); QTC_ASSERT(w, return); MemoryView::binEditorAddData(w, addr, ba); } void MemoryAgent::provideNewRange(quint64 address) { QWidget *w = qobject_cast(sender()); QTC_ASSERT(w, return); MemoryView::setBinEditorRange(w, address, DataRange, BinBlockSize); } void MemoryAgent::handleDataChanged(quint64 addr, const QByteArray &data) { m_engine->changeMemory(this, sender(), addr, data); } void MemoryAgent::handleWatchpointRequest(quint64 address, uint size) { m_engine->breakHandler()->setWatchpointAtAddress(address, size); } void MemoryAgent::updateContents() { foreach (const QPointer &e, m_editors) if (e) MemoryView::binEditorUpdateContents(e->widget()); // Update all views except register views, which trigger on // register value set/changed. foreach (const QPointer &w, m_views) if (w && !qobject_cast(w.data())) w->updateContents(); } bool MemoryAgent::hasVisibleEditor() const { QList visible = EditorManager::visibleEditors(); foreach (QPointer editor, m_editors) if (visible.contains(editor.data())) return true; return false; } void MemoryAgent::engineStateChanged(Debugger::DebuggerState s) { switch (s) { case DebuggerFinished: closeViews(); foreach (const QPointer &editor, m_editors) if (editor) { // Prevent triggering updates, etc. MemoryView::setBinEditorReadOnly(editor->widget(), true); editor->widget()->disconnect(this); } break; default: break; } } bool MemoryAgent::isBigEndian(const ProjectExplorer::Abi &a) { switch (a.architecture()) { case ProjectExplorer::Abi::UnknownArchitecture: case ProjectExplorer::Abi::X86Architecture: case ProjectExplorer::Abi::ItaniumArchitecture: // Configureable case ProjectExplorer::Abi::ArmArchitecture: // Configureable case ProjectExplorer::Abi::ShArchitecture: // Configureable break; case ProjectExplorer::Abi::MipsArchitecture: // Configureable case ProjectExplorer::Abi::PowerPCArchitecture: // Configureable return true; } return false; } // Read a POD variable from a memory location. Swap bytes if endianness differs template POD readPod(const unsigned char *data, bool swapByteOrder) { POD pod = 0; if (swapByteOrder) { unsigned char *target = reinterpret_cast(&pod) + sizeof(POD) - 1; for (size_t i = 0; i < sizeof(POD); i++) *target-- = data[i]; } else { std::memcpy(&pod, data, sizeof(POD)); } return pod; } // Read memory from debuggee quint64 MemoryAgent::readInferiorPointerValue(const unsigned char *data, const ProjectExplorer::Abi &a) { const bool swapByteOrder = isBigEndian(a) != isBigEndian(ProjectExplorer::Abi::hostAbi()); return a.wordWidth() == 32 ? readPod(data, swapByteOrder) : readPod(data, swapByteOrder); } } // namespace Internal } // namespace Debugger ;