2009-07-15 14:21:26 +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://www.qtsoftware.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
#include "trkutils.h"
|
|
|
|
|
|
2009-07-15 14:21:26 +02:00
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
|
|
|
|
|
#include <QtNetwork/QLocalServer>
|
|
|
|
|
#include <QtNetwork/QLocalSocket>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
|
|
void signalHandler(int)
|
|
|
|
|
{
|
|
|
|
|
qApp->exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
using namespace trk;
|
|
|
|
|
|
|
|
|
|
// Format of the replay source is something like
|
|
|
|
|
// ---IDE------------------------------------------------------
|
|
|
|
|
// Command: 0x05 Support Mask
|
|
|
|
|
// [05 02]
|
|
|
|
|
//---TRK------------------------------------------------------
|
|
|
|
|
// Command: 0x80 Acknowledge
|
|
|
|
|
// Error: 0x00
|
|
|
|
|
// [80 02 00 7E 00 4F 5F 01 00 00 00 0F 1F 00 00 00
|
|
|
|
|
// 00 00 00 01 00 11 00 03 00 00 00 00 00 03 00 00...]
|
2009-07-15 14:21:26 +02:00
|
|
|
|
2009-07-17 12:13:38 +02:00
|
|
|
struct Inferior
|
|
|
|
|
{
|
|
|
|
|
Inferior();
|
|
|
|
|
uint pid;
|
|
|
|
|
uint tid;
|
|
|
|
|
uint codeseg;
|
|
|
|
|
uint dataseg;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Inferior::Inferior()
|
|
|
|
|
{
|
|
|
|
|
pid = 0x000008F5;
|
|
|
|
|
tid = 0x000008F6;
|
2009-07-21 14:37:51 +02:00
|
|
|
codeseg = 0x786A4000;
|
2009-07-17 12:13:38 +02:00
|
|
|
dataseg = 0x00400000;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-15 14:21:26 +02:00
|
|
|
class TrkServer : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2009-07-16 10:13:04 +02:00
|
|
|
TrkServer();
|
2009-07-15 14:21:26 +02:00
|
|
|
~TrkServer();
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
void setServerName(const QString &name) { m_serverName = name; }
|
2009-07-21 14:37:51 +02:00
|
|
|
void setMemoryDumpName(const QString &source) { m_memoryDumpName = source; }
|
2009-07-16 10:13:04 +02:00
|
|
|
void startServer();
|
|
|
|
|
|
2009-07-15 14:21:26 +02:00
|
|
|
private slots:
|
|
|
|
|
void handleConnection();
|
2009-07-16 10:13:04 +02:00
|
|
|
void readFromAdapter();
|
|
|
|
|
void writeToAdapter(byte command, byte token, const QByteArray &data);
|
|
|
|
|
|
|
|
|
|
void handleAdapterMessage(const TrkResult &result);
|
2009-07-15 14:21:26 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void logMessage(const QString &msg);
|
2009-07-21 14:37:51 +02:00
|
|
|
byte nextNotificationToken();
|
2009-07-15 14:21:26 +02:00
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
QString m_serverName;
|
2009-07-21 14:37:51 +02:00
|
|
|
QString m_memoryDumpName;
|
2009-07-16 10:13:04 +02:00
|
|
|
|
|
|
|
|
QByteArray m_adapterReadBuffer;
|
|
|
|
|
|
2009-07-21 14:37:51 +02:00
|
|
|
QByteArray m_memoryData;
|
2009-07-16 10:13:04 +02:00
|
|
|
QLocalServer m_server;
|
2009-07-15 14:21:26 +02:00
|
|
|
int m_lastSent;
|
2009-07-16 10:13:04 +02:00
|
|
|
QLocalSocket *m_adapterConnection;
|
2009-07-17 12:13:38 +02:00
|
|
|
Inferior m_inferior;
|
2009-07-21 14:37:51 +02:00
|
|
|
byte m_notificationToken;
|
2009-07-15 14:21:26 +02:00
|
|
|
};
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
TrkServer::TrkServer()
|
2009-07-15 14:21:26 +02:00
|
|
|
{
|
2009-07-16 10:13:04 +02:00
|
|
|
m_adapterConnection = 0;
|
2009-07-21 14:37:51 +02:00
|
|
|
m_notificationToken = 0;
|
2009-07-16 10:13:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TrkServer::~TrkServer()
|
|
|
|
|
{
|
|
|
|
|
logMessage("Shutting down.\n");
|
|
|
|
|
m_server.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TrkServer::startServer()
|
|
|
|
|
{
|
2009-07-21 14:37:51 +02:00
|
|
|
QFile file(m_memoryDumpName);
|
2009-07-16 10:13:04 +02:00
|
|
|
file.open(QIODevice::ReadOnly);
|
2009-07-21 14:37:51 +02:00
|
|
|
m_memoryData = file.readAll();
|
2009-07-16 10:13:04 +02:00
|
|
|
file.close();
|
|
|
|
|
|
2009-07-21 14:37:51 +02:00
|
|
|
logMessage(QString("Read %1 bytes of data from %2")
|
|
|
|
|
.arg(m_memoryData.size()).arg(m_memoryDumpName));
|
2009-07-16 10:13:04 +02:00
|
|
|
|
2009-07-15 14:21:26 +02:00
|
|
|
m_lastSent = 0;
|
2009-07-16 10:13:04 +02:00
|
|
|
if (!m_server.listen(m_serverName)) {
|
2009-07-15 14:21:26 +02:00
|
|
|
logMessage(QString("Error: Unable to start the TRK server %1: %2.")
|
2009-07-16 10:13:04 +02:00
|
|
|
.arg(m_serverName).arg(m_server.errorString()));
|
2009-07-15 14:21:26 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logMessage("The TRK server is running. Run the adapter now.");
|
2009-07-16 10:13:04 +02:00
|
|
|
connect(&m_server, SIGNAL(newConnection()), this, SLOT(handleConnection()));
|
2009-07-15 14:21:26 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
void TrkServer::logMessage(const QString &msg)
|
2009-07-15 14:21:26 +02:00
|
|
|
{
|
2009-07-16 10:13:04 +02:00
|
|
|
qDebug() << "TRKSERVER: " << qPrintable(msg);
|
2009-07-15 14:21:26 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
void TrkServer::handleConnection()
|
2009-07-15 14:21:26 +02:00
|
|
|
{
|
2009-07-16 10:13:04 +02:00
|
|
|
m_adapterConnection = m_server.nextPendingConnection();
|
|
|
|
|
connect(m_adapterConnection, SIGNAL(disconnected()),
|
|
|
|
|
m_adapterConnection, SLOT(deleteLater()));
|
|
|
|
|
connect(m_adapterConnection, SIGNAL(readyRead()),
|
|
|
|
|
this, SLOT(readFromAdapter()));
|
2009-07-15 14:21:26 +02:00
|
|
|
}
|
|
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
void TrkServer::readFromAdapter()
|
2009-07-15 14:21:26 +02:00
|
|
|
{
|
2009-07-16 10:13:04 +02:00
|
|
|
QByteArray packet = m_adapterConnection->readAll();
|
|
|
|
|
m_adapterReadBuffer.append(packet);
|
|
|
|
|
|
|
|
|
|
logMessage("trk: -> " + stringFromArray(packet));
|
|
|
|
|
|
|
|
|
|
if (packet != m_adapterReadBuffer)
|
|
|
|
|
logMessage("buffer: " + stringFromArray(m_adapterReadBuffer));
|
2009-07-15 14:21:26 +02:00
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
while (!m_adapterReadBuffer.isEmpty())
|
|
|
|
|
handleAdapterMessage(extractResult(&m_adapterReadBuffer));
|
|
|
|
|
}
|
2009-07-15 14:21:26 +02:00
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
void TrkServer::writeToAdapter(byte command, byte token, const QByteArray &data)
|
|
|
|
|
{
|
|
|
|
|
QByteArray msg = frameMessage(command, token, data);
|
|
|
|
|
logMessage("trk: <- " + stringFromArray(msg));
|
|
|
|
|
m_adapterConnection->write(msg);
|
|
|
|
|
}
|
2009-07-15 14:21:26 +02:00
|
|
|
|
2009-07-16 10:13:04 +02:00
|
|
|
void TrkServer::handleAdapterMessage(const TrkResult &result)
|
|
|
|
|
{
|
|
|
|
|
QByteArray data;
|
2009-07-16 16:05:43 +02:00
|
|
|
data.append(char(0x00)); // No error
|
2009-07-16 10:13:04 +02:00
|
|
|
switch (result.code) {
|
|
|
|
|
case 0x00: { // Ping
|
2009-07-21 14:37:51 +02:00
|
|
|
m_notificationToken = 0;
|
2009-07-16 10:13:04 +02:00
|
|
|
writeToAdapter(0x80, 0x00, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-16 16:05:43 +02:00
|
|
|
case 0x01: { // Connect
|
|
|
|
|
writeToAdapter(0x80, result.token, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-17 12:13:38 +02:00
|
|
|
case 0x10: { // Read Memory
|
|
|
|
|
const char *p = result.data.data();
|
|
|
|
|
byte option = p[0];
|
|
|
|
|
Q_UNUSED(option);
|
|
|
|
|
ushort len = extractShort(p + 1);
|
|
|
|
|
uint addr = extractInt(p + 3);
|
2009-07-21 14:37:51 +02:00
|
|
|
//qDebug() << "MESSAGE: " << result.data.toHex();
|
|
|
|
|
qDebug() << "ADDR: " << hexNumber(addr) << " " << hexNumber(len);
|
|
|
|
|
if (addr < m_inferior.codeseg
|
|
|
|
|
|| addr + len >= m_inferior.codeseg + m_memoryData.size()) {
|
|
|
|
|
qDebug() << "ADDRESS OUTSIDE CODESEG: " << hexNumber(addr)
|
|
|
|
|
<< hexNumber(m_inferior.codeseg);
|
|
|
|
|
for (int i = 0; i != len / 4; ++i)
|
|
|
|
|
appendInt(&data, 0xDEADBEEF);
|
|
|
|
|
}
|
2009-07-17 12:13:38 +02:00
|
|
|
for (int i = 0; i != len; ++i)
|
2009-07-21 14:37:51 +02:00
|
|
|
appendByte(&data, m_memoryData[addr - m_inferior.codeseg + i]);
|
2009-07-17 12:13:38 +02:00
|
|
|
writeToAdapter(0x80, result.token, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 0x12: { // Read Registers
|
2009-07-21 14:37:51 +02:00
|
|
|
appendByte(&data, 0x00);
|
|
|
|
|
appendByte(&data, 0x00);
|
|
|
|
|
appendByte(&data, 0x00);
|
|
|
|
|
appendInt(&data, 0xC92D7FBC, BigEndian);
|
2009-07-17 12:13:38 +02:00
|
|
|
appendInt(&data, 0x00000000, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00600000, BigEndian);
|
2009-07-21 14:37:51 +02:00
|
|
|
appendInt(&data, 0x00000000, BigEndian);
|
|
|
|
|
appendInt(&data, 0x786A7970, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00000000, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00000000, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00000012, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00000040, BigEndian);
|
|
|
|
|
appendInt(&data, 0xC82AF210, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00000000, BigEndian);
|
|
|
|
|
appendInt(&data, 0xC8000548, BigEndian);
|
|
|
|
|
appendInt(&data, 0x00403ED0, BigEndian);
|
|
|
|
|
appendInt(&data, 0x786A6BD8, BigEndian);
|
|
|
|
|
appendInt(&data, 0x786A4CC8, BigEndian);
|
|
|
|
|
appendInt(&data, 0x68000010, BigEndian);
|
2009-07-17 12:13:38 +02:00
|
|
|
writeToAdapter(0x80, result.token, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-21 14:37:51 +02:00
|
|
|
case 0x18: { // Continue
|
|
|
|
|
writeToAdapter(0x80, result.token, data); // ACK Package
|
|
|
|
|
|
|
|
|
|
if (0) { // Fake "Stop"
|
|
|
|
|
QByteArray note;
|
|
|
|
|
appendInt(¬e, 0); // FIXME: use proper address
|
|
|
|
|
appendInt(¬e, m_inferior.pid);
|
|
|
|
|
appendInt(¬e, m_inferior.tid);
|
|
|
|
|
appendByte(¬e, 0x00);
|
|
|
|
|
appendByte(¬e, 0x00);
|
|
|
|
|
writeToAdapter(0x90, nextNotificationToken(), note);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-17 12:13:38 +02:00
|
|
|
case 0x40: { // Create Item
|
|
|
|
|
appendInt(&data, m_inferior.pid, BigEndian);
|
|
|
|
|
appendInt(&data, m_inferior.tid, BigEndian);
|
|
|
|
|
appendInt(&data, m_inferior.codeseg, BigEndian);
|
|
|
|
|
appendInt(&data, m_inferior.dataseg, BigEndian);
|
|
|
|
|
writeToAdapter(0x80, result.token, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-21 14:37:51 +02:00
|
|
|
case 0x41: { // Delete Item
|
|
|
|
|
writeToAdapter(0x80, result.token, data);
|
|
|
|
|
|
|
|
|
|
// A Process?
|
|
|
|
|
// Command: 0xA1 Notify Deleted
|
|
|
|
|
//[A1 02 00 00 00 00 00 00 00 00 01 B5]
|
|
|
|
|
QByteArray note; // FIXME
|
|
|
|
|
appendByte(¬e, 0);
|
|
|
|
|
appendByte(¬e, 0);
|
|
|
|
|
appendInt(¬e, 0);
|
|
|
|
|
appendInt(¬e, m_inferior.pid);
|
|
|
|
|
writeToAdapter(0xA1, nextNotificationToken(), note);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-16 10:13:04 +02:00
|
|
|
default:
|
2009-07-16 16:05:43 +02:00
|
|
|
data[0] = 0x10; // Command not supported
|
2009-07-16 10:13:04 +02:00
|
|
|
writeToAdapter(0xff, result.token, data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-07-15 14:21:26 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-21 14:37:51 +02:00
|
|
|
byte TrkServer::nextNotificationToken()
|
|
|
|
|
{
|
|
|
|
|
++m_notificationToken;
|
|
|
|
|
if (m_notificationToken == 0)
|
|
|
|
|
++m_notificationToken;
|
|
|
|
|
return m_notificationToken;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-15 14:21:26 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2009-07-16 10:13:04 +02:00
|
|
|
if (argc < 3) {
|
|
|
|
|
qDebug() << "Usage: " << argv[0] << " <trkservername>"
|
|
|
|
|
<< " <replaysource>";
|
2009-07-15 14:21:26 +02:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
|
signal(SIGUSR1, signalHandler);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
QCoreApplication app(argc, argv);
|
2009-07-16 10:13:04 +02:00
|
|
|
|
|
|
|
|
TrkServer server;
|
|
|
|
|
server.setServerName(argv[1]);
|
2009-07-21 14:37:51 +02:00
|
|
|
server.setMemoryDumpName(argv[2]);
|
2009-07-16 10:13:04 +02:00
|
|
|
server.startServer();
|
|
|
|
|
|
2009-07-15 14:21:26 +02:00
|
|
|
return app.exec();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "trkserver.moc"
|