2009-08-28 13:50:31 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
#include "trkutils.h"
|
2009-09-03 13:32:26 +02:00
|
|
|
#include "trkdevicex.h"
|
2009-09-03 09:26:27 +02:00
|
|
|
|
2009-08-31 18:04:53 +02:00
|
|
|
#include <QtCore/QCoreApplication>
|
2009-08-28 13:50:31 +02:00
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
#include <QtCore/QHash>
|
2009-09-03 09:26:27 +02:00
|
|
|
#include <QtCore/QPointer>
|
2009-08-28 13:50:31 +02:00
|
|
|
#include <QtCore/QProcess>
|
2009-09-03 09:26:27 +02:00
|
|
|
#include <QtCore/QQueue>
|
2009-08-28 13:50:31 +02:00
|
|
|
#include <QtCore/QString>
|
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
#include <QtCore/QTextStream>
|
2009-08-31 18:04:53 +02:00
|
|
|
#include <QtCore/QTimer>
|
2009-08-28 13:50:31 +02:00
|
|
|
|
|
|
|
|
#include <QtGui/QApplication>
|
2009-09-03 09:26:27 +02:00
|
|
|
#include <QtGui/QKeyEvent>
|
|
|
|
|
#include <QtGui/QTextBlock>
|
2009-08-31 18:04:53 +02:00
|
|
|
#include <QtGui/QTextEdit>
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
#include <QtNetwork/QTcpServer>
|
|
|
|
|
#include <QtNetwork/QTcpSocket>
|
|
|
|
|
#include <QtNetwork/QLocalServer>
|
|
|
|
|
#include <QtNetwork/QLocalSocket>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using namespace trk;
|
|
|
|
|
|
|
|
|
|
enum { KnownRegisters = RegisterPSGdb + 1};
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
#define CB(s) Callback(this, &Adapter::s)
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
static const char *registerNames[KnownRegisters] =
|
|
|
|
|
{
|
|
|
|
|
"A1", "A2", "A3", "A4",
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, "AP",
|
|
|
|
|
"IP", "SP", "LR", "PC",
|
|
|
|
|
"PSTrk", 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
0, "PSGdb"
|
|
|
|
|
};
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
static QByteArray dumpRegister(int n, uint value)
|
2009-09-03 09:26:27 +02:00
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
QByteArray ba;
|
|
|
|
|
ba += ' ';
|
2009-09-03 09:26:27 +02:00
|
|
|
if (n < KnownRegisters && registerNames[n]) {
|
2009-09-03 13:32:26 +02:00
|
|
|
ba += registerNames[n];
|
2009-09-03 09:26:27 +02:00
|
|
|
} else {
|
2009-09-03 13:32:26 +02:00
|
|
|
ba += '#';
|
|
|
|
|
ba += QByteArray::number(n);
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
2009-09-03 13:32:26 +02:00
|
|
|
ba += "=0x" + hexNumber(value);
|
|
|
|
|
return ba;
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-08-31 18:04:53 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2009-09-03 09:26:27 +02:00
|
|
|
// Adapter
|
2009-08-31 18:04:53 +02:00
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
class Adapter : public QObject
|
2009-08-28 13:50:31 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2009-09-03 09:26:27 +02:00
|
|
|
typedef TrkFunctor1<const TrkResult &> Callback;
|
|
|
|
|
|
|
|
|
|
Adapter();
|
|
|
|
|
~Adapter();
|
|
|
|
|
void setGdbServerName(const QString &name);
|
|
|
|
|
QString gdbServerIP() const;
|
|
|
|
|
uint gdbServerPort() const;
|
|
|
|
|
void setTrkServerName(const QString &name) { m_trkServerName = name; }
|
|
|
|
|
void setVerbose(int verbose) { m_verbose = verbose; }
|
|
|
|
|
void setSerialFrame(bool b) { m_serialFrame = b; }
|
|
|
|
|
void setRegisterEndianness(Endianness r) { m_registerEndianness = r; }
|
2009-09-03 13:32:26 +02:00
|
|
|
void setBufferedMemoryRead(bool b) { m_bufferedMemoryRead = b; }
|
2009-09-03 09:26:27 +02:00
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void startServer();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void handleResult(const trk::TrkResult &data);
|
2009-08-31 18:04:53 +02:00
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void output(const QString &senderName, const QString &data);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void handleProcError(QProcess::ProcessError error);
|
|
|
|
|
void handleProcFinished(int exitCode, QProcess::ExitStatus exitStatus);
|
|
|
|
|
void handleProcReadyReadStandardError();
|
|
|
|
|
void handleProcReadyReadStandardOutput();
|
|
|
|
|
void handleProcStarted();
|
|
|
|
|
void handleProcStateChanged(QProcess::ProcessState newState);
|
|
|
|
|
void run();
|
2009-09-03 09:26:27 +02:00
|
|
|
void startGdb();
|
2009-09-03 13:32:26 +02:00
|
|
|
void writeToGdb(const QString &msg);
|
2009-08-28 13:50:31 +02:00
|
|
|
|
|
|
|
|
private:
|
2009-08-31 18:04:53 +02:00
|
|
|
friend class RunnerGui;
|
|
|
|
|
void connectProcess(QProcess *proc);
|
|
|
|
|
void sendOutput(QObject *sender, const QString &data);
|
|
|
|
|
void sendOutput(const QString &data) { sendOutput(0, data); }
|
2009-08-28 13:50:31 +02:00
|
|
|
|
|
|
|
|
QString m_endianness;
|
2009-09-03 13:32:26 +02:00
|
|
|
QString m_trkServerName; //
|
2009-09-03 09:26:27 +02:00
|
|
|
QString m_gdbServerName; // 127.0.0.1:(2222+uid)
|
|
|
|
|
|
|
|
|
|
QProcess m_gdbProc;
|
|
|
|
|
QProcess m_rfcommProc;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
//
|
|
|
|
|
// TRK
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
bool openTrkPort(const QString &port, QString *errorMessage); // or server name for local server
|
|
|
|
|
void sendTrkMessage(byte code,
|
|
|
|
|
Callback callBack = Callback(),
|
|
|
|
|
const QByteArray &data = QByteArray(),
|
|
|
|
|
const QVariant &cookie = QVariant(),
|
|
|
|
|
bool invokeOnFailure = false);
|
|
|
|
|
|
|
|
|
|
// convenience messages
|
|
|
|
|
void sendTrkInitialPing();
|
|
|
|
|
void sendTrkContinue();
|
|
|
|
|
void waitForTrkFinished();
|
|
|
|
|
void sendTrkAck(byte token);
|
|
|
|
|
|
|
|
|
|
// kill process and breakpoints
|
|
|
|
|
void cleanUp();
|
|
|
|
|
|
|
|
|
|
void handleCpuType(const TrkResult &result);
|
|
|
|
|
void handleCreateProcess(const TrkResult &result);
|
|
|
|
|
void handleClearBreakpoint(const TrkResult &result);
|
|
|
|
|
void handleSignalContinue(const TrkResult &result);
|
|
|
|
|
void handleWaitForFinished(const TrkResult &result);
|
|
|
|
|
void handleStop(const TrkResult &result);
|
|
|
|
|
void handleSupportMask(const TrkResult &result);
|
|
|
|
|
void handleTrkVersions(const TrkResult &result);
|
|
|
|
|
void handleDisconnect(const TrkResult &result);
|
|
|
|
|
|
|
|
|
|
void handleAndReportCreateProcess(const TrkResult &result);
|
|
|
|
|
void handleAndReportReadRegisters(const TrkResult &result);
|
|
|
|
|
QByteArray memoryReadLogMessage(uint addr, uint len, const QByteArray &ba) const;
|
|
|
|
|
void handleAndReportSetBreakpoint(const TrkResult &result);
|
|
|
|
|
void handleReadMemoryBuffered(const TrkResult &result);
|
|
|
|
|
void handleReadMemoryUnbuffered(const TrkResult &result);
|
2009-09-03 13:32:26 +02:00
|
|
|
void handleStepRange(const TrkResult &result);
|
2009-09-03 09:26:27 +02:00
|
|
|
void reportReadMemoryBuffered(const TrkResult &result);
|
|
|
|
|
void reportToGdb(const TrkResult &result);
|
|
|
|
|
|
|
|
|
|
void clearTrkBreakpoint(const Breakpoint &bp);
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void handleSetTrkBreakpoint(const TrkResult &result);
|
|
|
|
|
void setTrkBreakpoint(const Breakpoint &bp);
|
|
|
|
|
|
|
|
|
|
void readMemory(uint addr, uint len);
|
|
|
|
|
void startInferiorIfNeeded();
|
|
|
|
|
void interruptInferior();
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
TrkDevice m_trkDevice;
|
2009-09-03 09:26:27 +02:00
|
|
|
|
|
|
|
|
QList<Breakpoint> m_breakpoints;
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Gdb
|
|
|
|
|
//
|
|
|
|
|
Q_SLOT void handleGdbConnection();
|
|
|
|
|
Q_SLOT void readFromGdb();
|
|
|
|
|
void handleGdbResponse(const QByteArray &ba);
|
2009-09-03 13:32:26 +02:00
|
|
|
void sendGdbMessage(const QByteArray &msg,
|
|
|
|
|
const QByteArray &logNote = QByteArray());
|
|
|
|
|
void sendGdbMessageAfterSync(const QByteArray &msg,
|
|
|
|
|
const QByteArray &logNote = QByteArray());
|
2009-09-03 09:26:27 +02:00
|
|
|
void sendGdbAckMessage();
|
|
|
|
|
bool sendGdbPacket(const QByteArray &packet, bool doFlush);
|
|
|
|
|
void executeGdbCommand(const QString &msg);
|
|
|
|
|
|
|
|
|
|
void logMessage(const QString &msg, bool force = false);
|
2009-09-03 13:32:26 +02:00
|
|
|
Q_SLOT void trkLogMessage(const QString &msg);
|
2009-09-03 09:26:27 +02:00
|
|
|
|
|
|
|
|
QTcpServer m_gdbServer;
|
|
|
|
|
QPointer<QTcpSocket> m_gdbConnection;
|
|
|
|
|
QByteArray m_gdbReadBuffer;
|
|
|
|
|
bool m_gdbAckMode;
|
|
|
|
|
|
|
|
|
|
// Debuggee state
|
|
|
|
|
Session m_session; // global-ish data (process id, target information)
|
|
|
|
|
Snapshot m_snapshot; // local-ish data (memory and registers)
|
|
|
|
|
int m_verbose;
|
|
|
|
|
Endianness m_registerEndianness;
|
|
|
|
|
bool m_serialFrame;
|
|
|
|
|
bool m_startInferiorTriggered;
|
|
|
|
|
bool m_bufferedMemoryRead;
|
2009-08-28 13:50:31 +02:00
|
|
|
};
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
Adapter::Adapter()
|
2009-08-28 13:50:31 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
m_gdbAckMode = true;
|
2009-09-03 13:32:26 +02:00
|
|
|
m_verbose = 2;
|
2009-09-03 09:26:27 +02:00
|
|
|
m_registerEndianness = LittleEndian;
|
|
|
|
|
//m_serialFrame = true;
|
|
|
|
|
m_serialFrame = false;
|
|
|
|
|
m_startInferiorTriggered = false;
|
2009-09-03 13:32:26 +02:00
|
|
|
//m_bufferedMemoryRead = true;
|
|
|
|
|
m_bufferedMemoryRead = false;
|
2009-09-03 09:26:27 +02:00
|
|
|
// m_breakpoints.append(Breakpoint(0x0040)); // E32Main
|
2009-09-03 13:32:26 +02:00
|
|
|
m_breakpoints.append(Breakpoint(0x0cc8)); // E32Main
|
2009-09-03 09:26:27 +02:00
|
|
|
m_trkServerName = "/dev/rfcomm0";
|
|
|
|
|
|
2009-08-28 13:50:31 +02:00
|
|
|
m_endianness = "little";
|
2009-08-31 18:04:53 +02:00
|
|
|
|
|
|
|
|
uid_t userId = getuid();
|
2009-09-03 09:26:27 +02:00
|
|
|
m_gdbServerName = QString("127.0.0.1:%1").arg(2222 + userId);
|
2009-08-31 18:04:53 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
m_gdbProc.setObjectName("GDB PROCESS");
|
|
|
|
|
connectProcess(&m_gdbProc);
|
2009-08-31 18:04:53 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
m_rfcommProc.setObjectName("RFCOMM PROCESS");
|
|
|
|
|
connectProcess(&m_rfcommProc);
|
2009-09-03 13:32:26 +02:00
|
|
|
|
|
|
|
|
connect(&m_trkDevice, SIGNAL(logMessage(QString)),
|
|
|
|
|
this, SLOT(trkLogMessage(QString)));
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
Adapter::~Adapter()
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
m_gdbServer.close();
|
|
|
|
|
logMessage("Shutting down.\n", true);
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
void Adapter::trkLogMessage(const QString &msg)
|
|
|
|
|
{
|
|
|
|
|
logMessage("TRK " + msg);
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::setGdbServerName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
m_gdbServerName = name;
|
|
|
|
|
}
|
2009-08-31 18:04:53 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
QString Adapter::gdbServerIP() const
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
int pos = m_gdbServerName.indexOf(':');
|
|
|
|
|
if (pos == -1)
|
|
|
|
|
return m_gdbServerName;
|
|
|
|
|
return m_gdbServerName.left(pos);
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
uint Adapter::gdbServerPort() const
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
int pos = m_gdbServerName.indexOf(':');
|
|
|
|
|
if (pos == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
return m_gdbServerName.mid(pos + 1).toUInt();
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::startServer()
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
QString errorMessage;
|
|
|
|
|
if (!openTrkPort(m_trkServerName, &errorMessage)) {
|
|
|
|
|
logMessage(errorMessage, true);
|
|
|
|
|
logMessage("LOOPING");
|
|
|
|
|
QTimer::singleShot(1000, this, SLOT(startServer()));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sendTrkInitialPing();
|
|
|
|
|
sendTrkMessage(0x01); // Connect
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x05, CB(handleSupportMask));
|
|
|
|
|
sendTrkMessage(0x06, CB(handleCpuType));
|
|
|
|
|
sendTrkMessage(0x04, CB(handleTrkVersions)); // Versions
|
2009-09-03 09:26:27 +02:00
|
|
|
//sendTrkMessage(0x09); // Unrecognized command
|
|
|
|
|
//sendTrkMessage(0x4a, 0,
|
|
|
|
|
// "10 " + formatString("C:\\data\\usingdlls.sisx")); // Open File
|
|
|
|
|
//sendTrkMessage(0x4B, 0, "00 00 00 01 73 1C 3A C8"); // Close File
|
|
|
|
|
|
|
|
|
|
logMessage("Connected to TRK server");
|
|
|
|
|
|
|
|
|
|
if (!m_gdbServer.listen(QHostAddress(gdbServerIP()), gdbServerPort())) {
|
|
|
|
|
logMessage(QString("Unable to start the gdb server at %1: %2.")
|
|
|
|
|
.arg(m_gdbServerName).arg(m_gdbServer.errorString()), true);
|
|
|
|
|
QCoreApplication::exit(5);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logMessage(QString("Gdb server running on %1.\nRegister endianness: %3.")
|
|
|
|
|
.arg(m_gdbServerName).arg(m_registerEndianness), true);
|
|
|
|
|
|
|
|
|
|
connect(&m_gdbServer, SIGNAL(newConnection()),
|
|
|
|
|
this, SLOT(handleGdbConnection()));
|
|
|
|
|
|
|
|
|
|
startGdb();
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::logMessage(const QString &msg, bool force)
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
if (m_verbose || force)
|
2009-09-03 13:32:26 +02:00
|
|
|
emit output(QString(), msg);
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
//
|
|
|
|
|
// Gdb
|
|
|
|
|
//
|
|
|
|
|
void Adapter::handleGdbConnection()
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
logMessage("HANDLING GDB CONNECTION");
|
|
|
|
|
|
|
|
|
|
m_gdbConnection = m_gdbServer.nextPendingConnection();
|
|
|
|
|
connect(m_gdbConnection, SIGNAL(disconnected()),
|
|
|
|
|
m_gdbConnection, SLOT(deleteLater()));
|
|
|
|
|
connect(m_gdbConnection, SIGNAL(readyRead()),
|
|
|
|
|
this, SLOT(readFromGdb()));
|
|
|
|
|
m_startInferiorTriggered = false;
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
static inline QString msgGdbPacket(const QString &p)
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
return QLatin1String("gdb: ") + p;
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::readFromGdb()
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
QByteArray packet = m_gdbConnection->readAll();
|
|
|
|
|
m_gdbReadBuffer.append(packet);
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
logMessage("gdb: -> " + QString::fromAscii(packet));
|
2009-09-03 09:26:27 +02:00
|
|
|
if (packet != m_gdbReadBuffer)
|
|
|
|
|
logMessage("buffer: " + m_gdbReadBuffer);
|
|
|
|
|
|
|
|
|
|
QByteArray &ba = m_gdbReadBuffer;
|
|
|
|
|
while (ba.size()) {
|
|
|
|
|
char code = ba.at(0);
|
|
|
|
|
ba = ba.mid(1);
|
|
|
|
|
|
|
|
|
|
if (code == '+') {
|
|
|
|
|
//logMessage("ACK");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (code == '-') {
|
|
|
|
|
logMessage("NAK: Retransmission requested");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (code == char(0x03)) {
|
|
|
|
|
logMessage("INTERRUPT RECEIVED");
|
|
|
|
|
interruptInferior();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (code != '$') {
|
|
|
|
|
logMessage("Broken package (2) " + quoteUnprintableLatin1(ba)
|
|
|
|
|
+ hexNumber(code));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pos = ba.indexOf('#');
|
|
|
|
|
if (pos == -1) {
|
|
|
|
|
logMessage("Invalid checksum format in "
|
|
|
|
|
+ quoteUnprintableLatin1(ba));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ok = false;
|
|
|
|
|
uint checkSum = ba.mid(pos + 1, 2).toUInt(&ok, 16);
|
|
|
|
|
if (!ok) {
|
|
|
|
|
logMessage("Invalid checksum format 2 in "
|
|
|
|
|
+ quoteUnprintableLatin1(ba));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//logMessage(QString("Packet checksum: %1").arg(checkSum));
|
|
|
|
|
byte sum = 0;
|
|
|
|
|
for (int i = 0; i < pos; ++i)
|
|
|
|
|
sum += ba.at(i);
|
|
|
|
|
|
|
|
|
|
if (sum != checkSum) {
|
|
|
|
|
logMessage(QString("ERROR: Packet checksum wrong: %1 %2 in "
|
|
|
|
|
+ quoteUnprintableLatin1(ba)).arg(checkSum).arg(sum));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QByteArray response = ba.left(pos);
|
|
|
|
|
ba.remove(0, pos + 3);
|
|
|
|
|
handleGdbResponse(response);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Adapter::sendGdbPacket(const QByteArray &packet, bool doFlush)
|
|
|
|
|
{
|
|
|
|
|
if (!m_gdbConnection || m_gdbConnection->state() != QAbstractSocket::ConnectedState) {
|
|
|
|
|
logMessage(QString::fromLatin1("Cannot write to gdb: Not connected (%1)").arg(QString::fromLatin1(packet)), true);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (m_gdbConnection->write(packet) == -1) {
|
|
|
|
|
logMessage(QString::fromLatin1("Cannot write to gdb: %1 (%2)").arg(m_gdbConnection->errorString()).arg(QString::fromLatin1(packet)), true);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (doFlush)
|
|
|
|
|
m_gdbConnection->flush();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendGdbAckMessage()
|
|
|
|
|
{
|
|
|
|
|
if (!m_gdbAckMode)
|
|
|
|
|
return;
|
|
|
|
|
QByteArray packet = "+";
|
|
|
|
|
logMessage("gdb: <- " + packet);
|
|
|
|
|
sendGdbPacket(packet, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendGdbMessage(const QByteArray &msg, const QByteArray &logNote)
|
|
|
|
|
{
|
|
|
|
|
byte sum = 0;
|
|
|
|
|
for (int i = 0; i != msg.size(); ++i)
|
|
|
|
|
sum += msg.at(i);
|
|
|
|
|
|
|
|
|
|
char checkSum[30];
|
|
|
|
|
qsnprintf(checkSum, sizeof(checkSum) - 1, "%02x ", sum);
|
|
|
|
|
|
|
|
|
|
//logMessage(QString("Packet checksum: %1").arg(sum));
|
|
|
|
|
|
|
|
|
|
QByteArray packet;
|
|
|
|
|
packet.append("$");
|
|
|
|
|
packet.append(msg);
|
|
|
|
|
packet.append('#');
|
|
|
|
|
packet.append(checkSum);
|
|
|
|
|
int pad = qMax(0, 24 - packet.size());
|
|
|
|
|
logMessage("gdb: <- " + packet + QByteArray(pad, ' ') + logNote);
|
|
|
|
|
sendGdbPacket(packet, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendGdbMessageAfterSync(const QByteArray &msg, const QByteArray &logNote)
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba = msg + char(1) + logNote;
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(TRK_WRITE_QUEUE_NOOP_CODE, CB(reportToGdb), "", ba); // Answer gdb
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::reportToGdb(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
QByteArray message = result.cookie.toByteArray();
|
|
|
|
|
QByteArray note;
|
|
|
|
|
int pos = message.lastIndexOf(char(1)); // HACK
|
|
|
|
|
if (pos != -1) {
|
|
|
|
|
note = message.mid(pos + 1);
|
|
|
|
|
message = message.left(pos);
|
|
|
|
|
}
|
|
|
|
|
message.replace("@CODESEG@", hexNumber(m_session.codeseg));
|
|
|
|
|
message.replace("@DATASEG@", hexNumber(m_session.dataseg));
|
|
|
|
|
message.replace("@PID@", hexNumber(m_session.pid));
|
|
|
|
|
message.replace("@TID@", hexNumber(m_session.tid));
|
|
|
|
|
sendGdbMessage(message, note);
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
static QByteArray trkBreakpointMessage(uint addr, int len, int pid, bool armMode = true)
|
2009-09-03 09:26:27 +02:00
|
|
|
{
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0x82); // unused option
|
|
|
|
|
appendByte(&ba, armMode /*bp.mode == ArmMode*/ ? 0x00 : 0x01);
|
|
|
|
|
appendInt(&ba, addr);
|
|
|
|
|
appendInt(&ba, len);
|
|
|
|
|
appendInt(&ba, 0x00000001);
|
|
|
|
|
appendInt(&ba, pid);
|
|
|
|
|
appendInt(&ba, 0xFFFFFFFF);
|
|
|
|
|
return ba;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleGdbResponse(const QByteArray &response)
|
|
|
|
|
{
|
|
|
|
|
// http://sourceware.org/gdb/current/onlinedocs/gdb_34.html
|
|
|
|
|
if (0) {}
|
|
|
|
|
|
|
|
|
|
else if (response == "!") {
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage("", "extended mode not enabled");
|
|
|
|
|
//sendGdbMessage("OK", "extended mode enabled");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("?")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("Query halted")));
|
|
|
|
|
// Indicate the reason the target halted.
|
|
|
|
|
// The reply is the same as for step and continue.
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
startInferiorIfNeeded();
|
|
|
|
|
sendGdbMessage("T05library:r;", "target halted (library load)");
|
|
|
|
|
// trap 05
|
|
|
|
|
// sendGdbMessage("S05", "target halted (trap)");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "c") {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("continue")));
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // options
|
|
|
|
|
appendInt(&ba, 0); // start address
|
|
|
|
|
appendInt(&ba, 0); // end address
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid);
|
|
|
|
|
sendTrkMessage(0x18, Callback(), ba);
|
|
|
|
|
// FIXME: should be triggered by real stop
|
|
|
|
|
//sendGdbMessageAfterSync("S11", "target stopped");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("C")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("continue with signal")));
|
|
|
|
|
// C sig[;addr] Continue with signal sig (hex signal number)
|
|
|
|
|
//Reply: See section D.3 Stop Reply Packets, for the reply specifications.
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
bool ok = false;
|
|
|
|
|
uint signalNumber = response.mid(1).toInt(&ok, 16);
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x18, CB(handleSignalContinue), ba, signalNumber); // Continue
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("D")) {
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage("OK", "shutting down");
|
|
|
|
|
qApp->quit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "g") {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("read registers")));
|
|
|
|
|
// Read general registers.
|
|
|
|
|
//sendGdbMessage("00000000", "read registers");
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // Register set, only 0 supported
|
|
|
|
|
appendShort(&ba, 0);
|
|
|
|
|
appendShort(&ba, RegisterCount - 1); // last register
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x12, CB(handleAndReportReadRegisters), ba, QVariant(), true);
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("Hc")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("Set thread & continue")));
|
|
|
|
|
// Set thread for subsequent operations (`m', `M', `g', `G', et.al.).
|
|
|
|
|
// for step and continue operations
|
|
|
|
|
//$Hc-1#09
|
|
|
|
|
sendGdbAckMessage();
|
2009-09-03 13:32:26 +02:00
|
|
|
sendGdbMessage("OK", "Set current thread for step & continue");
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("Hg")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("Set thread")));
|
|
|
|
|
// Set thread for subsequent operations (`m', `M', `g', `G', et.al.).
|
|
|
|
|
// for 'other operations. 0 - any thread
|
|
|
|
|
//$Hg0#df
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
m_session.currentThread = response.mid(2).toInt(0, 16);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendGdbMessage("OK", "Set current thread "
|
2009-09-03 09:26:27 +02:00
|
|
|
+ QByteArray::number(m_session.currentThread));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "k") {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("kill")));
|
|
|
|
|
// kill
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // Sub-command: Delete Process
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
sendTrkMessage(0x41, Callback(), ba, "Delete process"); // Delete Item
|
|
|
|
|
sendGdbMessageAfterSync("", "process killed");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("m")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("read memory")));
|
|
|
|
|
// m addr,length
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
uint addr = 0, len = 0;
|
|
|
|
|
do {
|
|
|
|
|
const int pos = response.indexOf(',');
|
|
|
|
|
if (pos == -1)
|
|
|
|
|
break;
|
|
|
|
|
bool ok;
|
|
|
|
|
addr = response.mid(1, pos - 1).toUInt(&ok, 16);
|
|
|
|
|
if (!ok)
|
|
|
|
|
break;
|
|
|
|
|
len = response.mid(pos + 1).toUInt(&ok, 16);
|
|
|
|
|
if (!ok)
|
|
|
|
|
break;
|
|
|
|
|
} while (false);
|
|
|
|
|
if (len) {
|
|
|
|
|
readMemory(addr, len);
|
|
|
|
|
} else {
|
|
|
|
|
sendGdbMessage("E20", "Error " + response);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (response.startsWith("p")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("read register")));
|
|
|
|
|
// 0xf == current instruction pointer?
|
|
|
|
|
//sendGdbMessage("0000", "current IP");
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
#if 0
|
|
|
|
|
A1 = 0, first integer-like argument
|
|
|
|
|
A4 = 3, last integer-like argument
|
|
|
|
|
AP = 11,
|
|
|
|
|
IP = 12,
|
|
|
|
|
SP = 13, Contains address of top of stack
|
|
|
|
|
LR = 14, address to return to from a function call
|
|
|
|
|
PC = 15, Contains program counter
|
|
|
|
|
F0 = 16, first floating point register
|
|
|
|
|
F3 = 19, last floating point argument register
|
|
|
|
|
F7 = 23, last floating point register
|
|
|
|
|
FPS = 24, floating point status register
|
|
|
|
|
PS = 25, Contains processor status
|
|
|
|
|
WR0, WMMX data registers.
|
|
|
|
|
WR15 = WR0 + 15,
|
|
|
|
|
WC0, WMMX control registers.
|
|
|
|
|
WCSSF = WC0 + 2,
|
|
|
|
|
WCASF = WC0 + 3,
|
|
|
|
|
WC7 = WC0 + 7,
|
|
|
|
|
WCGR0, WMMX general purpose registers.
|
|
|
|
|
WCGR3 = WCGR0 + 3,
|
|
|
|
|
WCGR7 = WCGR0 + 7,
|
|
|
|
|
NUM_REGS,
|
|
|
|
|
|
|
|
|
|
// Other useful registers.
|
|
|
|
|
FP = 11, Frame register in ARM code, if used.
|
|
|
|
|
THUMB_FP = 7, Frame register in Thumb code, if used.
|
|
|
|
|
NUM_ARG_REGS = 4,
|
|
|
|
|
LAST_ARG = A4,
|
|
|
|
|
NUM_FP_ARG_REGS = 4,
|
|
|
|
|
LAST_FP_ARG = F3
|
|
|
|
|
#endif
|
|
|
|
|
bool ok = false;
|
|
|
|
|
const uint registerNumber = response.mid(1).toInt(&ok, 16);
|
2009-09-03 13:32:26 +02:00
|
|
|
QByteArray logMsg = "Read Register";
|
2009-09-03 09:26:27 +02:00
|
|
|
if (registerNumber == RegisterPSGdb) {
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendInt(&ba, m_snapshot.registers[RegisterPSTrk], m_registerEndianness);
|
2009-09-03 13:32:26 +02:00
|
|
|
logMsg += dumpRegister(registerNumber, m_snapshot.registers[RegisterPSTrk]);
|
2009-09-03 09:26:27 +02:00
|
|
|
sendGdbMessage(ba.toHex(), logMsg);
|
|
|
|
|
} else if (registerNumber < RegisterCount) {
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendInt(&ba, m_snapshot.registers[registerNumber], m_registerEndianness);
|
2009-09-03 13:32:26 +02:00
|
|
|
logMsg += dumpRegister(registerNumber, m_snapshot.registers[registerNumber]);
|
2009-09-03 09:26:27 +02:00
|
|
|
sendGdbMessage(ba.toHex(), logMsg);
|
|
|
|
|
} else {
|
|
|
|
|
sendGdbMessage("0000", "read single unknown register #" + QByteArray::number(registerNumber));
|
|
|
|
|
//sendGdbMessage("E01", "read single unknown register");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "qAttached") {
|
|
|
|
|
//$qAttached#8f
|
|
|
|
|
// 1: attached to an existing process
|
|
|
|
|
// 0: created a new process
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage("0", "new process created");
|
|
|
|
|
//sendGdbMessage("1", "attached to existing process");
|
|
|
|
|
//sendGdbMessage("E01", "new process created");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("qC")) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("query thread id")));
|
|
|
|
|
// Return the current thread ID
|
|
|
|
|
//$qC#b4
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
startInferiorIfNeeded();
|
|
|
|
|
sendGdbMessageAfterSync("QC@TID@");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("qSupported")) {
|
|
|
|
|
//$qSupported#37
|
|
|
|
|
//$qSupported:multiprocess+#c6
|
|
|
|
|
//logMessage("Handling 'qSupported'");
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
if (0)
|
|
|
|
|
sendGdbMessage(QByteArray(), "nothing supported");
|
|
|
|
|
else
|
|
|
|
|
sendGdbMessage(
|
|
|
|
|
"PacketSize=7cf;"
|
|
|
|
|
//"QPassSignals+;"
|
|
|
|
|
"qXfer:libraries:read+;"
|
|
|
|
|
//"qXfer:auxv:read+;"
|
|
|
|
|
"qXfer:features:read+");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "qPacketInfo") {
|
|
|
|
|
// happens with gdb 6.4.50.20060226-cvs / CodeSourcery
|
|
|
|
|
// deprecated by qSupported?
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage("", "FIXME: nothing?");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "qOffsets") {
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
startInferiorIfNeeded();
|
|
|
|
|
sendGdbMessageAfterSync("TextSeg=@CODESEG@;DataSeg=@DATASEG@");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "qSymbol::") {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("notify can handle symbol lookup")));
|
|
|
|
|
// Notify the target that GDB is prepared to serve symbol lookup requests.
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
if (1)
|
|
|
|
|
sendGdbMessage("OK", "no further symbols needed");
|
|
|
|
|
else
|
|
|
|
|
sendGdbMessage("qSymbol:" + QByteArray("_Z7E32Mainv").toHex(), "ask for more");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("qXfer:features:read:target.xml:")) {
|
|
|
|
|
// $qXfer:features:read:target.xml:0,7ca#46...Ack
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage("l<target><architecture>symbianelf</architecture></target>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "QStartNoAckMode") {
|
|
|
|
|
//$qSupported#37
|
|
|
|
|
//logMessage("Handling 'QStartNoAckMode'");
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage("OK", "ack no-ack mode");
|
|
|
|
|
m_gdbAckMode = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("QPassSignals")) {
|
|
|
|
|
// list of signals to pass directly to inferior
|
|
|
|
|
// $QPassSignals:e;10;14;17;1a;1b;1c;21;24;25;4c;#8f
|
|
|
|
|
// happens only if "QPassSignals+;" is qSupported
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
// FIXME: use the parameters
|
|
|
|
|
sendGdbMessage("OK", "passing signals accepted");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "s") {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("Step range")));
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // options
|
|
|
|
|
appendInt(&ba, m_snapshot.registers[RegisterPC]); // start address
|
|
|
|
|
appendInt(&ba, m_snapshot.registers[RegisterPC] + 4); // end address
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x19, CB(handleStepRange), ba, "Step range");
|
2009-09-03 09:26:27 +02:00
|
|
|
// FIXME: should be triggered by "real" stop"
|
|
|
|
|
//sendGdbMessageAfterSync("S05", "target halted");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response == "vCont?") {
|
|
|
|
|
// actions supported by the vCont packet
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
sendGdbMessage(""); // we don't support vCont.
|
|
|
|
|
//sendGdbMessage("vCont;c");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//else if (response.startsWith("vCont")) {
|
|
|
|
|
// // vCont[;action[:thread-id]]...'
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("vKill")) {
|
|
|
|
|
// kill
|
|
|
|
|
sendGdbAckMessage();
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // Sub-command: Delete Process
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
sendTrkMessage(0x41, Callback(), ba, "Delete process"); // Delete Item
|
|
|
|
|
sendGdbMessageAfterSync("", "process killed");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (response.startsWith("Z0,")) { // Insert breakpoint
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("Insert breakpoint")));
|
|
|
|
|
// $z0,786a4ccc,4#99
|
|
|
|
|
const int pos = response.lastIndexOf(',');
|
|
|
|
|
bool ok = false;
|
|
|
|
|
const uint addr = response.mid(3, pos - 1).toInt(&ok, 16);
|
|
|
|
|
const uint len = response.mid(pos + 1).toInt(&ok, 16);
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(QString::fromLatin1("Inserting breakpoint at 0x%1, %2").arg(addr,0 ,16).arg(len));
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1B Set Break
|
|
|
|
|
//BreakType: 0x82
|
|
|
|
|
// Options: 0x00
|
|
|
|
|
// Address: 0x78674340 (2020033344) i.e + 0x00000340
|
|
|
|
|
// Length: 0x00000001 (1)
|
|
|
|
|
// Count: 0x00000000 (0)
|
|
|
|
|
//ProcessID: 0x000001b5 (437)
|
|
|
|
|
// ThreadID: 0xffffffff (-1)
|
|
|
|
|
// [1B 09 82 00 78 67 43 40 00 00 00 01 00 00 00 00
|
|
|
|
|
// 00 00 01 B5 FF FF FF FF]
|
2009-09-03 13:32:26 +02:00
|
|
|
const QByteArray ba = trkBreakpointMessage(addr, len, m_session.pid);
|
|
|
|
|
sendTrkMessage(0x1B, CB(handleAndReportSetBreakpoint), ba);
|
2009-09-03 09:26:27 +02:00
|
|
|
//m_session.toekn
|
|
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00 00 00 00 0A]
|
|
|
|
|
} else if (response.startsWith("qPart:") || response.startsWith("qXfer:")) {
|
|
|
|
|
QByteArray data = response.mid(1 + response.indexOf(':'));
|
|
|
|
|
// "qPart:auxv:read::0,147": Read OS auxiliary data (see info aux)
|
|
|
|
|
bool handled = false;
|
|
|
|
|
if (data.startsWith("auxv:read::")) {
|
|
|
|
|
const int offsetPos = data.lastIndexOf(':') + 1;
|
|
|
|
|
const int commaPos = data.lastIndexOf(',');
|
|
|
|
|
if (commaPos != -1) {
|
|
|
|
|
bool ok1 = false, ok2 = false;
|
|
|
|
|
const int offset = data.mid(offsetPos, commaPos - offsetPos).toInt(&ok1, 16);
|
|
|
|
|
const int length = data.mid(commaPos + 1).toInt(&ok2, 16);
|
|
|
|
|
if (ok1 && ok2) {
|
|
|
|
|
const QString msg = QString::fromLatin1("Read of OS auxilary vector (%1, %2) not implemented.").arg(offset).arg(length);
|
|
|
|
|
logMessage(msgGdbPacket(msg), true);
|
|
|
|
|
sendGdbMessage("E20", msg.toLatin1());
|
|
|
|
|
handled = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} // auxv read
|
|
|
|
|
if (!handled) {
|
|
|
|
|
const QString msg = QLatin1String("FIXME unknown 'XFER'-request: ") + QString::fromAscii(response);
|
|
|
|
|
logMessage(msgGdbPacket(msg), true);
|
|
|
|
|
sendGdbMessage("E20", msg.toLatin1());
|
|
|
|
|
}
|
|
|
|
|
} // qPart/qXfer
|
|
|
|
|
else {
|
|
|
|
|
logMessage(msgGdbPacket(QLatin1String("FIXME unknown: ") + QString::fromAscii(response)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::executeGdbCommand(const QString &msg)
|
|
|
|
|
{
|
|
|
|
|
logMessage("EXECUTING GDB COMMAND " + msg);
|
|
|
|
|
if (msg == "S")
|
2009-09-03 13:32:26 +02:00
|
|
|
writeToGdb("-exec-interrupt");
|
|
|
|
|
if (msg == "I")
|
|
|
|
|
interruptInferior();
|
2009-09-03 09:26:27 +02:00
|
|
|
else
|
2009-09-03 13:32:26 +02:00
|
|
|
writeToGdb(msg);
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Adapter::openTrkPort(const QString &port, QString *errorMessage)
|
|
|
|
|
{
|
|
|
|
|
connect(&m_trkDevice, SIGNAL(messageReceived(trk::TrkResult)),
|
|
|
|
|
this, SLOT(handleResult(trk::TrkResult)));
|
|
|
|
|
if (m_verbose > 1)
|
|
|
|
|
m_trkDevice.setVerbose(true);
|
|
|
|
|
m_trkDevice.setSerialFrame(m_serialFrame);
|
|
|
|
|
return m_trkDevice.open(port, errorMessage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendTrkMessage(byte code, Callback callBack,
|
|
|
|
|
const QByteArray &data, const QVariant &cookie, bool invokeOnFailure)
|
|
|
|
|
{
|
|
|
|
|
m_trkDevice.sendTrkMessage(code, callBack, data, cookie, invokeOnFailure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendTrkInitialPing()
|
|
|
|
|
{
|
|
|
|
|
m_trkDevice.sendTrkInitialPing();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendTrkContinue()
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid);
|
|
|
|
|
sendTrkMessage(0x18, Callback(), ba, "CONTINUE");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::waitForTrkFinished()
|
|
|
|
|
{
|
|
|
|
|
// initiate one last roundtrip to ensure all is flushed
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x0, CB(handleWaitForFinished));
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::sendTrkAck(byte token)
|
|
|
|
|
{
|
|
|
|
|
logMessage(QString("SENDING ACKNOWLEDGEMENT FOR TOKEN %1").arg(int(token)));
|
|
|
|
|
m_trkDevice.sendTrkAck(token);
|
|
|
|
|
}
|
2009-08-31 18:04:53 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::handleResult(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
if (result.isDebugOutput) {
|
|
|
|
|
logMessage(QLatin1String("APPLICATION OUTPUT: ") + QString::fromAscii(result.data));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
QByteArray prefix = "READ BUF: ";
|
|
|
|
|
QByteArray str = result.toString().toUtf8();
|
|
|
|
|
switch (result.code) {
|
|
|
|
|
case 0x80: // ACK
|
|
|
|
|
break;
|
|
|
|
|
case 0xff: { // NAK. This mostly means transmission error, not command failed.
|
|
|
|
|
QString logMsg;
|
|
|
|
|
QTextStream(&logMsg) << prefix << "NAK: for token=" << result.token << " ERROR: " << errorMessage(result.data.at(0)) << ' ' << str;
|
|
|
|
|
logMessage(logMsg, true);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0x90: { // Notified Stopped
|
|
|
|
|
// 90 01 78 6a 40 40 00 00 07 23 00 00 07 24 00 00
|
|
|
|
|
const char *data = result.data.data();
|
|
|
|
|
const uint addr = extractInt(data); //code address: 4 bytes; code base address for the library
|
|
|
|
|
const uint pid = extractInt(data + 4); // ProcessID: 4 bytes;
|
|
|
|
|
const uint tid = extractInt(data + 8); // ThreadID: 4 bytes
|
2009-09-03 13:32:26 +02:00
|
|
|
logMessage(prefix + QString::fromLatin1("NOTE: PID %1/TID %2 "
|
|
|
|
|
"STOPPED at 0x%3").arg(pid).arg(tid).arg(addr, 0, 16));
|
2009-09-03 09:26:27 +02:00
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
if (addr) {
|
2009-09-03 13:32:26 +02:00
|
|
|
// Todo: Do not send off GdbMessages if a synced gdb
|
|
|
|
|
// query is pending, queue instead
|
|
|
|
|
//sendGdbMessage("S05", "Target stopped");
|
2009-08-28 13:50:31 +02:00
|
|
|
} else {
|
2009-09-03 09:26:27 +02:00
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(QLatin1String("Ignoring stop at 0"));
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
2009-09-03 09:26:27 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0x91: { // Notify Exception (obsolete)
|
|
|
|
|
logMessage(prefix + "NOTE: EXCEPTION " + str);
|
|
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0x92: { //
|
|
|
|
|
logMessage(prefix + "NOTE: INTERNAL ERROR: " + str);
|
|
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// target->host OS notification
|
|
|
|
|
case 0xa0: { // Notify Created
|
|
|
|
|
const char *data = result.data.data();
|
|
|
|
|
const byte error = result.data.at(0);
|
|
|
|
|
const byte type = result.data.at(1); // type: 1 byte; for dll item, this value is 2.
|
|
|
|
|
const uint pid = extractInt(data + 2); // ProcessID: 4 bytes;
|
|
|
|
|
const uint tid = extractInt(data + 6); //threadID: 4 bytes
|
|
|
|
|
const uint codeseg = extractInt(data + 10); //code address: 4 bytes; code base address for the library
|
|
|
|
|
const uint dataseg = extractInt(data + 14); //data address: 4 bytes; data base address for the library
|
|
|
|
|
const uint len = extractShort(data + 18); //length: 2 bytes; length of the library name string to follow
|
|
|
|
|
const QByteArray name = result.data.mid(20, len); // name: library name
|
|
|
|
|
m_session.modules += QString::fromAscii(name);
|
|
|
|
|
QString logMsg;
|
|
|
|
|
QTextStream str(&logMsg);
|
|
|
|
|
str<< prefix << " NOTE: LIBRARY LOAD: token=" << result.token;
|
|
|
|
|
if (error)
|
|
|
|
|
str<< " ERROR: " << int(error);
|
|
|
|
|
str << " TYPE: " << int(type) << " PID: " << pid << " TID: " << tid;
|
|
|
|
|
str.setIntegerBase(16);
|
|
|
|
|
str << " CODE: 0x" << codeseg << " DATA: 0x" << dataseg;
|
|
|
|
|
str.setIntegerBase(10);
|
|
|
|
|
str << " NAME: '" << name << '\'';
|
|
|
|
|
logMessage(logMsg);
|
|
|
|
|
sendTrkContinue();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0xa1: { // NotifyDeleted
|
|
|
|
|
const ushort itemType = (unsigned char)result.data.at(1);
|
|
|
|
|
const ushort len = result.data.size() > 12 ? extractShort(result.data.data() + 10) : ushort(0);
|
|
|
|
|
const QString name = len ? QString::fromAscii(result.data.mid(12, len)) : QString();
|
|
|
|
|
if (!name.isEmpty())
|
|
|
|
|
m_session.modules.removeAll(name);
|
2009-09-03 13:32:26 +02:00
|
|
|
logMessage(QString::fromLatin1("%1 %2 UNLOAD: %3")
|
|
|
|
|
.arg(QString::fromAscii(prefix))
|
|
|
|
|
.arg(itemType ? QLatin1String("LIB") : QLatin1String("PROCESS"))
|
|
|
|
|
.arg(name));
|
2009-09-03 09:26:27 +02:00
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0xa2: { // NotifyProcessorStarted
|
|
|
|
|
logMessage(prefix + "NOTE: PROCESSOR STARTED: " + str);
|
|
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0xa6: { // NotifyProcessorStandby
|
|
|
|
|
logMessage(prefix + "NOTE: PROCESSOR STANDBY: " + str);
|
|
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0xa7: { // NotifyProcessorReset
|
|
|
|
|
logMessage(prefix + "NOTE: PROCESSOR RESET: " + str);
|
|
|
|
|
sendTrkAck(result.token);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default: {
|
|
|
|
|
logMessage(prefix + "INVALID: " + str);
|
|
|
|
|
break;
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::handleCpuType(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 03 00 04 00 00 04 00 00 00]
|
|
|
|
|
m_session.cpuMajor = result.data[1];
|
|
|
|
|
m_session.cpuMinor = result.data[2];
|
|
|
|
|
m_session.bigEndian = result.data[3];
|
|
|
|
|
m_session.defaultTypeSize = result.data[4];
|
|
|
|
|
m_session.fpTypeSize = result.data[5];
|
|
|
|
|
m_session.extended1TypeSize = result.data[6];
|
|
|
|
|
//m_session.extended2TypeSize = result.data[6];
|
|
|
|
|
QString logMsg;
|
|
|
|
|
QTextStream(&logMsg) << "HANDLE CPU TYPE: CPU=" << m_session.cpuMajor << '.'
|
|
|
|
|
<< m_session.cpuMinor << " bigEndian=" << m_session.bigEndian
|
|
|
|
|
<< " defaultTypeSize=" << m_session.defaultTypeSize
|
|
|
|
|
<< " fpTypeSize=" << m_session.fpTypeSize
|
|
|
|
|
<< " extended1TypeSize=" << m_session.extended1TypeSize;
|
|
|
|
|
logMessage(logMsg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::setTrkBreakpoint(const Breakpoint &bp)
|
2009-08-28 13:50:31 +02:00
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1B Set Break
|
|
|
|
|
//BreakType: 0x82
|
|
|
|
|
// Options: 0x00
|
|
|
|
|
// Address: 0x78674340 (2020033344) i.e + 0x00000340
|
|
|
|
|
// Length: 0x00000001 (1)
|
|
|
|
|
// Count: 0x00000000 (0)
|
|
|
|
|
//ProcessID: 0x000001b5 (437)
|
|
|
|
|
// ThreadID: 0xffffffff (-1)
|
|
|
|
|
// [1B 09 82 00 78 67 43 40 00 00 00 01 00 00 00 00
|
|
|
|
|
// 00 00 01 B5 FF FF FF FF]
|
|
|
|
|
const QByteArray ba = trkBreakpointMessage(m_session.codeseg + bp.offset, 1, m_session.pid);
|
|
|
|
|
sendTrkMessage(0x1B, CB(handleSetTrkBreakpoint), ba);
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00 00 00 00 0A]
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleSetTrkBreakpoint(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00 00 00 00 0A]
|
|
|
|
|
const uint bpnr = extractInt(result.data.data());
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(QString::fromLatin1("SET BREAKPOINT %1 %2").arg(bpnr).arg(stringFromArray(result.data.data())));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleCreateProcess(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
// 40 00 00]
|
|
|
|
|
//logMessage(" RESULT: " + result.toString());
|
|
|
|
|
// [80 08 00 00 00 01 B5 00 00 01 B6 78 67 40 00 00 40 00 00]
|
|
|
|
|
const char *data = result.data.data();
|
|
|
|
|
m_session.pid = extractInt(data + 1);
|
|
|
|
|
m_session.tid = extractInt(data + 5);
|
|
|
|
|
m_session.codeseg = extractInt(data + 9);
|
|
|
|
|
m_session.dataseg = extractInt(data + 13);
|
2009-09-03 13:32:26 +02:00
|
|
|
|
|
|
|
|
logMessage("PID: 0x" + hexNumber(m_session.pid));
|
|
|
|
|
logMessage("TID: 0x" + hexNumber(m_session.tid));
|
|
|
|
|
logMessage("COD: 0x" + hexNumber(m_session.codeseg));
|
|
|
|
|
logMessage("DAT: 0x" + hexNumber(m_session.dataseg));
|
|
|
|
|
|
|
|
|
|
writeToGdb("add-symbol-file filebrowseapp.sym 0x"
|
|
|
|
|
+ hexNumber(m_session.codeseg));
|
|
|
|
|
writeToGdb("symbol-file filebrowseapp.sym");
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
foreach (const Breakpoint &bp, m_breakpoints)
|
|
|
|
|
setTrkBreakpoint(bp);
|
|
|
|
|
|
|
|
|
|
sendTrkContinue();
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
#if 0
|
2009-09-03 09:26:27 +02:00
|
|
|
//setTrkBreakpoint(0x0000, ArmMode);
|
|
|
|
|
//clearTrkBreakpoint(0x0000);
|
|
|
|
|
|
|
|
|
|
#if 1
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x42 Read Info
|
|
|
|
|
// [42 0C 00 06 00 00 00 00 00 14 50 6F 6C 79 6D 6F
|
|
|
|
|
// 72 70 68 69 63 44 4C 4C 32 2E 64 6C 6C 00]
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x42, CB(handleReadInfo),
|
2009-09-03 09:26:27 +02:00
|
|
|
"00 06 00 00 00 00 00 14 50 6F 6C 79 6D 6F "
|
|
|
|
|
"72 70 68 69 63 44 4C 4C 32 2E 64 6C 6C 00");
|
2009-09-03 13:32:26 +02:00
|
|
|
//sendTrkMessage(0x42, CB(handleReadInfo),
|
2009-09-03 09:26:27 +02:00
|
|
|
// "00 01 00 00 00 00");
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x20 Unspecified general OS-related error
|
|
|
|
|
// [80 0C 20]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x42 Read Info
|
|
|
|
|
// [42 0D 00 06 00 00 00 00 00 14 50 6F 6C 79 6D 6F
|
|
|
|
|
// 72 70 68 69 63 44 4C 4C 31 2E 64 6C 6C 00]
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x42, CB(handleReadInfo),
|
2009-09-03 09:26:27 +02:00
|
|
|
"00 06 00 00 00 00 00 14 50 6F 6C 79 6D 6F "
|
|
|
|
|
"72 70 68 69 63 44 4C 4C 31 2E 64 6C 6C 00");
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x20 Unspecified general OS-related error
|
|
|
|
|
// [80 0D 20]
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
//sendTrkMessage(0x18, CB(handleStop),
|
2009-09-03 09:26:27 +02:00
|
|
|
// "01 " + formatInt(m_session.pid) + formatInt(m_session.tid));
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x18 Continue
|
|
|
|
|
//ProcessID: 0x000001B5 (437)
|
|
|
|
|
// ThreadID: 0x000001B6 (438)
|
|
|
|
|
// [18 0E 00 00 01 B5 00 00 01 B6]
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x18, CB(handleContinue), ba);
|
|
|
|
|
//sendTrkMessage(0x18, CB(handleContinue),
|
2009-09-03 09:26:27 +02:00
|
|
|
// formatInt(m_session.pid) + "ff ff ff ff");
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 0E 00]
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::handleAndReportReadRegisters(const TrkResult &result)
|
|
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
logMessage(" RESULT: " + result.toString());
|
2009-09-03 09:26:27 +02:00
|
|
|
// [80 0B 00 00 00 00 00 C9 24 FF BC 00 00 00 00 00
|
|
|
|
|
// 60 00 00 00 00 00 00 78 67 79 70 00 00 00 00 00...]
|
|
|
|
|
|
|
|
|
|
const char *data = result.data.data() + 1; // Skip ok byte
|
|
|
|
|
for (int i = 0; i < RegisterCount; ++i) {
|
|
|
|
|
m_snapshot.registers[i] = extractInt(data + 4 * i);
|
|
|
|
|
}
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
for (int i = 0; i < 16; ++i) {
|
2009-09-03 13:32:26 +02:00
|
|
|
const uint reg = m_registerEndianness == LittleEndian
|
|
|
|
|
? swapEndian(m_snapshot.registers[i]) : m_snapshot.registers[i];
|
2009-09-03 09:26:27 +02:00
|
|
|
ba += hexNumber(reg, 8);
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
2009-09-03 13:32:26 +02:00
|
|
|
QByteArray logMsg = "REGISTER CONTENTS: ";
|
2009-09-03 09:26:27 +02:00
|
|
|
if (m_verbose > 1) {
|
2009-09-03 13:32:26 +02:00
|
|
|
for (int i = 0; i < RegisterCount; ++i) {
|
|
|
|
|
logMsg += dumpRegister(i, m_snapshot.registers[i]);
|
|
|
|
|
logMsg += ' ';
|
|
|
|
|
}
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
sendGdbMessage(ba, logMsg);
|
|
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
static inline QString msgMemoryReadError(int code, uint addr, uint len = 0)
|
|
|
|
|
{
|
|
|
|
|
const QString lenS = len ? QString::number(len) : QLatin1String("<unknown>");
|
|
|
|
|
return QString::fromLatin1("Memory read error %1 at: 0x%2 %3").arg(code).arg(addr, 0 ,16).arg(lenS);
|
|
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::handleReadMemoryBuffered(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
const uint blockaddr = result.cookie.toUInt();
|
|
|
|
|
if (const int errorCode = result.errorCode()) {
|
|
|
|
|
logMessage(msgMemoryReadError(errorCode, blockaddr));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const QByteArray ba = result.data.mid(1);
|
|
|
|
|
m_snapshot.memory.insert(blockaddr , ba);
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
// Format log message for memory access with some smartness about registers
|
|
|
|
|
QByteArray Adapter::memoryReadLogMessage(uint addr, uint len, const QByteArray &ba) const
|
2009-08-28 13:50:31 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
QByteArray logMsg = "memory contents";
|
|
|
|
|
if (m_verbose > 1) {
|
|
|
|
|
logMsg += " addr: 0x";
|
|
|
|
|
logMsg += QByteArray::number(addr, 16);
|
|
|
|
|
// indicate dereferencing of registers
|
|
|
|
|
if (len == 4) {
|
|
|
|
|
if (addr == m_snapshot.registers[RegisterPC]) {
|
|
|
|
|
logMsg += "[PC]";
|
|
|
|
|
} else if (addr == m_snapshot.registers[RegisterPSTrk]) {
|
|
|
|
|
logMsg += "[PSTrk]";
|
|
|
|
|
} else if (addr == m_snapshot.registers[RegisterSP]) {
|
|
|
|
|
logMsg += "[SP]";
|
|
|
|
|
} else if (addr == m_snapshot.registers[RegisterLR]) {
|
|
|
|
|
logMsg += "[LR]";
|
2009-09-03 13:32:26 +02:00
|
|
|
} else if (addr > m_snapshot.registers[RegisterSP] &&
|
|
|
|
|
(addr - m_snapshot.registers[RegisterSP]) < 10240) {
|
2009-09-03 09:26:27 +02:00
|
|
|
logMsg += "[SP+"; // Stack area ...stack seems to be top-down
|
|
|
|
|
logMsg += QByteArray::number(addr - m_snapshot.registers[RegisterSP]);
|
|
|
|
|
logMsg += ']';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
logMsg += " length ";
|
|
|
|
|
logMsg += QByteArray::number(len);
|
|
|
|
|
logMsg += " :";
|
|
|
|
|
logMsg += stringFromArray(ba, 16);
|
|
|
|
|
}
|
|
|
|
|
return logMsg;
|
|
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::reportReadMemoryBuffered(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
const qulonglong cookie = result.cookie.toULongLong();
|
|
|
|
|
const uint addr = cookie >> 32;
|
|
|
|
|
const uint len = uint(cookie);
|
|
|
|
|
|
|
|
|
|
// Gdb accepts less memory according to documentation.
|
|
|
|
|
// Send E on complete failure.
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
uint blockaddr = (addr / MemoryChunkSize) * MemoryChunkSize;
|
|
|
|
|
for (; blockaddr < addr + len; blockaddr += MemoryChunkSize) {
|
|
|
|
|
const Snapshot::Memory::const_iterator it = m_snapshot.memory.constFind(blockaddr);
|
|
|
|
|
if (it == m_snapshot.memory.constEnd())
|
|
|
|
|
break;
|
|
|
|
|
ba.append(it.value());
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
2009-09-03 09:26:27 +02:00
|
|
|
const int previousChunkOverlap = addr % MemoryChunkSize;
|
|
|
|
|
if (previousChunkOverlap != 0 && ba.size() > previousChunkOverlap)
|
|
|
|
|
ba.remove(0, previousChunkOverlap);
|
|
|
|
|
if (ba.size() > int(len))
|
|
|
|
|
ba.truncate(len);
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
if (ba.isEmpty()) {
|
|
|
|
|
ba = "E20";
|
|
|
|
|
sendGdbMessage(ba, msgMemoryReadError(32, addr, len).toLatin1());
|
|
|
|
|
} else {
|
|
|
|
|
sendGdbMessage(ba.toHex(), memoryReadLogMessage(addr, len, ba));
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::handleReadMemoryUnbuffered(const TrkResult &result)
|
|
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
//logMessage("UNBUFFERED MEMORY READ: " + stringFromArray(result.data));
|
2009-09-03 09:26:27 +02:00
|
|
|
const uint blockaddr = result.cookie.toUInt();
|
2009-09-03 13:32:26 +02:00
|
|
|
if (extractShort(result.data.data() + 1) + 3 != result.data.size()) {
|
|
|
|
|
logMessage("\n BAD MEMORY RESULT: " + result.data.toHex() + "\n");
|
|
|
|
|
}
|
2009-09-03 09:26:27 +02:00
|
|
|
if (const int errorCode = result.errorCode()) {
|
|
|
|
|
const QByteArray ba = "E20";
|
|
|
|
|
sendGdbMessage(ba, msgMemoryReadError(32, blockaddr).toLatin1());
|
|
|
|
|
} else {
|
2009-09-03 13:32:26 +02:00
|
|
|
const QByteArray ba = result.data.mid(3);
|
2009-09-03 09:26:27 +02:00
|
|
|
sendGdbMessage(ba.toHex(), memoryReadLogMessage(blockaddr, ba.size(), ba));
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-08-28 13:50:31 +02:00
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
void Adapter::handleStepRange(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
// [80 0f 12]
|
|
|
|
|
//uint bpnr = extractInt(result.data.data());
|
|
|
|
|
logMessage("STEPPING FINISHED " + stringFromArray(result.data.data()));
|
|
|
|
|
sendGdbMessage("S05", "Stepping finished");
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::handleAndReportSetBreakpoint(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00 00 00 00 0A]
|
|
|
|
|
uint bpnr = extractInt(result.data.data());
|
|
|
|
|
logMessage("SET BREAKPOINT " + bpnr + stringFromArray(result.data.data()));
|
|
|
|
|
sendGdbMessage("OK");
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::clearTrkBreakpoint(const Breakpoint &bp)
|
2009-08-28 13:50:31 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1C Clear Break
|
|
|
|
|
// [1C 25 00 00 00 0A 78 6A 43 40]
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0x00);
|
|
|
|
|
appendShort(&ba, bp.number);
|
|
|
|
|
appendInt(&ba, m_session.codeseg + bp.offset);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x1C, CB(handleClearBreakpoint), ba);
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleClearBreakpoint(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(result);
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00 00 00 00 0A]
|
|
|
|
|
logMessage("CLEAR BREAKPOINT ");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleSignalContinue(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
int signalNumber = result.cookie.toInt();
|
|
|
|
|
logMessage(" HANDLE SIGNAL CONTINUE: " + stringFromArray(result.data));
|
|
|
|
|
logMessage("NUMBER" + QString::number(signalNumber));
|
|
|
|
|
sendGdbMessage("O" + QByteArray("Console output").toHex());
|
|
|
|
|
sendGdbMessage("W81"); // "Process exited with result 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleWaitForFinished(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
logMessage(" FINISHED: " + stringFromArray(result.data));
|
|
|
|
|
//qApp->exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleSupportMask(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
const char *data = result.data.data();
|
|
|
|
|
QByteArray str;
|
|
|
|
|
for (int i = 0; i < 32; ++i) {
|
|
|
|
|
//str.append(" [" + formatByte(data[i]) + "]: ");
|
|
|
|
|
for (int j = 0; j < 8; ++j)
|
|
|
|
|
if (data[i] & (1 << j))
|
|
|
|
|
str.append(QByteArray::number(i * 8 + j, 16));
|
|
|
|
|
}
|
|
|
|
|
logMessage("SUPPORTED: " + str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleTrkVersions(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
QString logMsg;
|
|
|
|
|
QTextStream str(&logMsg);
|
|
|
|
|
str << "Versions: ";
|
|
|
|
|
if (result.data.size() >= 5) {
|
2009-09-03 13:32:26 +02:00
|
|
|
str << "Trk version " << int(result.data.at(1)) << '.'
|
|
|
|
|
<< int(result.data.at(2))
|
|
|
|
|
<< ", Protocol version " << int(result.data.at(3))
|
|
|
|
|
<< '.' << int(result.data.at(4));
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
logMessage(logMsg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleDisconnect(const TrkResult & /*result*/)
|
|
|
|
|
{
|
|
|
|
|
logMessage(QLatin1String("Trk disconnected"), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::cleanUp()
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x41 Delete Item
|
|
|
|
|
// Sub Cmd: Delete Process
|
|
|
|
|
//ProcessID: 0x0000071F (1823)
|
|
|
|
|
// [41 24 00 00 00 00 07 1F]
|
|
|
|
|
logMessage(QString::fromLatin1("Cleanup PID=%1").arg(m_session.pid), true);
|
|
|
|
|
if (!m_session.pid)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0x00);
|
|
|
|
|
appendByte(&ba, 0x00);
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
sendTrkMessage(0x41, Callback(), ba, "Delete process");
|
|
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 24 00]
|
|
|
|
|
|
|
|
|
|
foreach (const Breakpoint &bp, m_breakpoints)
|
|
|
|
|
clearTrkBreakpoint(bp);
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x02, CB(handleDisconnect));
|
2009-09-03 09:26:27 +02:00
|
|
|
m_startInferiorTriggered = false;
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1C Clear Break
|
|
|
|
|
// [1C 25 00 00 00 0A 78 6A 43 40]
|
|
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0xA1 Notify Deleted
|
|
|
|
|
// [A1 09 00 00 00 00 00 00 00 00 07 1F]
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 09 00]
|
|
|
|
|
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 25 00]
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x1C Clear Break
|
|
|
|
|
// [1C 26 00 00 00 0B 78 6A 43 70]
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 26 00]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x02 Disconnect
|
|
|
|
|
// [02 27]
|
2009-09-03 13:32:26 +02:00
|
|
|
// sendTrkMessage(0x02, CB(handleDisconnect));
|
2009-09-03 09:26:27 +02:00
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline QByteArray memoryRequestTrkMessage(uint addr, uint len, int pid, int tid)
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0x08); // Options, FIXME: why?
|
|
|
|
|
appendShort(&ba, len);
|
|
|
|
|
appendInt(&ba, addr);
|
|
|
|
|
appendInt(&ba, pid);
|
|
|
|
|
appendInt(&ba, tid);
|
|
|
|
|
return ba;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::readMemory(uint addr, uint len)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(len < (2 << 16));
|
|
|
|
|
|
|
|
|
|
// We try to get medium-sized chunks of data from the device
|
|
|
|
|
if (m_verbose > 2)
|
|
|
|
|
logMessage(QString::fromLatin1("readMemory %1 bytes from 0x%2 blocksize=%3").arg(len).arg(addr, 0, 16).arg(MemoryChunkSize));
|
|
|
|
|
|
|
|
|
|
if (m_bufferedMemoryRead) {
|
|
|
|
|
uint blockaddr = (addr / MemoryChunkSize) * MemoryChunkSize;
|
|
|
|
|
for (; blockaddr < addr + len; blockaddr += MemoryChunkSize) {
|
|
|
|
|
if (!m_snapshot.memory.contains(blockaddr)) {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(QString::fromLatin1("Requesting buffered memory %1 bytes from 0x%2").arg(MemoryChunkSize).arg(blockaddr, 0, 16));
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x10, CB(handleReadMemoryBuffered),
|
2009-09-03 09:26:27 +02:00
|
|
|
memoryRequestTrkMessage(blockaddr, MemoryChunkSize, m_session.pid, m_session.tid),
|
|
|
|
|
QVariant(blockaddr), true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const qulonglong cookie = (qulonglong(addr) << 32) + len;
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(TRK_WRITE_QUEUE_NOOP_CODE, CB(reportReadMemoryBuffered), QByteArray(), cookie);
|
2009-09-03 09:26:27 +02:00
|
|
|
} else {
|
|
|
|
|
if (m_verbose)
|
|
|
|
|
logMessage(QString::fromLatin1("Requesting unbuffered memory %1 bytes from 0x%2").arg(len).arg(addr, 0, 16));
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x10, CB(handleReadMemoryUnbuffered),
|
2009-09-03 09:26:27 +02:00
|
|
|
memoryRequestTrkMessage(addr, len, m_session.pid, m_session.tid),
|
|
|
|
|
QVariant(addr), true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::startInferiorIfNeeded()
|
|
|
|
|
{
|
|
|
|
|
if (m_startInferiorTriggered)
|
|
|
|
|
return;
|
|
|
|
|
if (m_session.pid != 0) {
|
|
|
|
|
logMessage("Process already 'started'");
|
2009-08-28 13:50:31 +02:00
|
|
|
return;
|
|
|
|
|
}
|
2009-09-03 09:26:27 +02:00
|
|
|
// It's not started yet
|
|
|
|
|
m_startInferiorTriggered = true;
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
appendByte(&ba, 0); // ?
|
|
|
|
|
appendByte(&ba, 0); // ?
|
|
|
|
|
appendByte(&ba, 0); // ?
|
|
|
|
|
|
|
|
|
|
QByteArray file("C:\\sys\\bin\\filebrowseapp.exe");
|
|
|
|
|
appendString(&ba, file, TargetByteOrder);
|
2009-09-03 13:32:26 +02:00
|
|
|
sendTrkMessage(0x40, CB(handleCreateProcess), ba); // Create Item
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::interruptInferior()
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
// stop the thread (2) or the process (1) or the whole system (0)
|
|
|
|
|
appendByte(&ba, 1);
|
|
|
|
|
appendInt(&ba, m_session.pid);
|
|
|
|
|
appendInt(&ba, m_session.tid); // threadID: 4 bytes Variable number of bytes.
|
|
|
|
|
sendTrkMessage(0x1A, Callback(), ba, "Interrupting...");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::connectProcess(QProcess *proc)
|
|
|
|
|
{
|
|
|
|
|
connect(proc, SIGNAL(error(QProcess::ProcessError)),
|
|
|
|
|
this, SLOT(handleProcError(QProcess::ProcessError)));
|
|
|
|
|
connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)),
|
|
|
|
|
this, SLOT(handleProcFinished(int, QProcess::ExitStatus)));
|
|
|
|
|
connect(proc, SIGNAL(readyReadStandardError()),
|
|
|
|
|
this, SLOT(handleProcReadyReadStandardError()));
|
|
|
|
|
connect(proc, SIGNAL(readyReadStandardOutput()),
|
|
|
|
|
this, SLOT(handleProcReadyReadStandardOutput()));
|
|
|
|
|
connect(proc, SIGNAL(started()),
|
|
|
|
|
this, SLOT(handleProcStarted()));
|
|
|
|
|
connect(proc, SIGNAL(stateChanged(QProcess::ProcessState)),
|
|
|
|
|
this, SLOT(handleProcStateChanged(QProcess::ProcessState)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::sendOutput(QObject *sender, const QString &data)
|
|
|
|
|
{
|
|
|
|
|
if (sender)
|
2009-09-03 13:32:26 +02:00
|
|
|
emit output(sender->objectName() + " : ", data);
|
2009-09-03 09:26:27 +02:00
|
|
|
else
|
|
|
|
|
emit output(QString(), data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleProcError(QProcess::ProcessError error)
|
|
|
|
|
{
|
|
|
|
|
sendOutput(sender(), QString("Process Error %1").arg(error));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleProcFinished(int exitCode, QProcess::ExitStatus exitStatus)
|
|
|
|
|
{
|
|
|
|
|
sendOutput(sender(),
|
|
|
|
|
QString("ProcessFinished %1 %2").arg(exitCode).arg(exitStatus));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleProcReadyReadStandardError()
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba = qobject_cast<QProcess *>(sender())->readAllStandardError();
|
|
|
|
|
sendOutput(sender(), QString("stderr: %1").arg(QString::fromLatin1(ba)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleProcReadyReadStandardOutput()
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba = qobject_cast<QProcess *>(sender())->readAllStandardOutput();
|
|
|
|
|
sendOutput(sender(), QString("stdout: %1").arg(QString::fromLatin1(ba)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleProcStarted()
|
|
|
|
|
{
|
|
|
|
|
sendOutput(sender(), QString("Process Started"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::handleProcStateChanged(QProcess::ProcessState newState)
|
|
|
|
|
{
|
|
|
|
|
sendOutput(sender(), QString("Process State %1").arg(newState));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::run()
|
2009-08-28 13:50:31 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
startServer();
|
|
|
|
|
sendOutput("### Starting Adapter");
|
|
|
|
|
|
|
|
|
|
m_rfcommProc.start("rfcomm listen /dev/rfcomm0 1");
|
2009-09-02 10:07:38 +02:00
|
|
|
|
2009-08-28 13:50:31 +02:00
|
|
|
uid_t userId = getuid();
|
|
|
|
|
if (m_trkServerName.isEmpty())
|
2009-08-31 18:04:53 +02:00
|
|
|
m_trkServerName = QString("TRKSERVER-%1").arg(userId);
|
2009-08-28 13:50:31 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
void Adapter::startGdb()
|
2009-09-02 09:41:18 +02:00
|
|
|
{
|
2009-09-03 09:26:27 +02:00
|
|
|
logMessage("STARTING GDB");
|
|
|
|
|
QStringList gdbArgs;
|
|
|
|
|
gdbArgs.append("--nx"); // Do not read .gdbinit file
|
|
|
|
|
gdbArgs.append("-i");
|
|
|
|
|
gdbArgs.append("mi");
|
|
|
|
|
m_gdbProc.start(QDir::currentPath() + "/cs-gdb", gdbArgs);
|
|
|
|
|
m_gdbProc.waitForStarted();
|
|
|
|
|
|
2009-09-03 13:32:26 +02:00
|
|
|
//writeToGdb("set remote noack-packet on");
|
|
|
|
|
writeToGdb("set confirm off");
|
|
|
|
|
writeToGdb("set endian " + m_endianness);
|
|
|
|
|
//writeToGdb("set debug remote 1");
|
|
|
|
|
//writeToGdb("target remote " + m_gdbServerName);
|
|
|
|
|
writeToGdb("target extended-remote " + m_gdbServerName);
|
|
|
|
|
//writeToGdb("file filebrowseapp.sym");
|
|
|
|
|
// writeToGdb("add-symbol-file filebrowseapp.sym " + m_baseAddress);
|
|
|
|
|
// writeToGdb("symbol-file filebrowseapp.sym");
|
|
|
|
|
// writeToGdb("print E32Main");
|
|
|
|
|
// writeToGdb("break E32Main");
|
|
|
|
|
//writeToGdb("continue");
|
|
|
|
|
//writeToGdb("info files");
|
|
|
|
|
//writeToGdb("file filebrowseapp.sym -readnow");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Adapter::writeToGdb(const QString &msg)
|
|
|
|
|
{
|
|
|
|
|
logMessage("<- GDB: " + msg);
|
|
|
|
|
m_gdbProc.write(msg.toLatin1() + "\n");
|
2009-09-02 09:41:18 +02:00
|
|
|
}
|
2009-08-31 18:04:53 +02:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// RunnerGui
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
class RunnerGui : public QTextEdit
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2009-09-03 09:26:27 +02:00
|
|
|
RunnerGui(Adapter *adapter);
|
|
|
|
|
void keyPressEvent(QKeyEvent *ev);
|
2009-08-31 18:04:53 +02:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void handleOutput(const QString &senderName, const QString &data);
|
|
|
|
|
|
|
|
|
|
private:
|
2009-09-03 09:26:27 +02:00
|
|
|
Adapter *m_adapter;
|
2009-08-31 18:04:53 +02:00
|
|
|
};
|
|
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
RunnerGui::RunnerGui(Adapter *adapter)
|
|
|
|
|
: m_adapter(adapter)
|
2009-08-31 18:04:53 +02:00
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
resize(1200, 1000);
|
2009-09-03 09:26:27 +02:00
|
|
|
connect(adapter, SIGNAL(output(QString,QString)),
|
2009-08-31 18:04:53 +02:00
|
|
|
this, SLOT(handleOutput(QString,QString)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RunnerGui::handleOutput(const QString &senderName, const QString &data)
|
|
|
|
|
{
|
2009-09-03 13:32:26 +02:00
|
|
|
append(senderName + data);
|
|
|
|
|
QTextCursor tc = textCursor();
|
|
|
|
|
tc.movePosition(QTextCursor::End);
|
|
|
|
|
setTextCursor(tc);
|
|
|
|
|
if (senderName.startsWith("GDB PROCESS")) {
|
|
|
|
|
QString str = data;
|
|
|
|
|
int pos = str.indexOf("~\"");
|
|
|
|
|
if (pos != -1)
|
|
|
|
|
str = str.mid(pos + 2);
|
|
|
|
|
str.replace("\\t", QString(QChar(0x09)));
|
|
|
|
|
str.replace("\\n", QString("\n"));
|
|
|
|
|
insertHtml("<b>" + str + "</b>");
|
|
|
|
|
setCurrentCharFormat(QTextCharFormat());
|
|
|
|
|
}
|
2009-09-03 09:26:27 +02:00
|
|
|
ensureCursorVisible();
|
2009-09-03 13:32:26 +02:00
|
|
|
|
2009-09-03 09:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RunnerGui::keyPressEvent(QKeyEvent *ev)
|
|
|
|
|
{
|
|
|
|
|
if (ev->modifiers() == Qt::ControlModifier && ev->key() == Qt::Key_Return)
|
|
|
|
|
m_adapter->executeGdbCommand(textCursor().block().text());
|
|
|
|
|
else
|
|
|
|
|
QTextEdit::keyPressEvent(ev);
|
2009-08-31 18:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// main
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-08-28 13:50:31 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
QApplication app(argc, argv);
|
2009-09-03 09:26:27 +02:00
|
|
|
Adapter adapter;
|
|
|
|
|
RunnerGui gui(&adapter);
|
2009-08-31 18:04:53 +02:00
|
|
|
gui.show();
|
2009-09-03 09:26:27 +02:00
|
|
|
QTimer::singleShot(0, &adapter, SLOT(run()));
|
2009-08-28 13:50:31 +02:00
|
|
|
return app.exec();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "runner.moc"
|