2017-12-08 15:00:52 +00:00
|
|
|
#include "VisualNavbar.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "MainWindow.h"
|
2017-12-07 23:41:15 +00:00
|
|
|
#include "utils/TempConfig.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-12-09 22:00:29 +00:00
|
|
|
#include <cmath>
|
2017-04-13 15:14:02 +00:00
|
|
|
#include <QGraphicsView>
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QComboBox>
|
|
|
|
#include <QGraphicsScene>
|
|
|
|
#include <QGraphicsRectItem>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonParseError>
|
2017-12-09 23:22:16 +00:00
|
|
|
#include <QToolTip>
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
VisualNavbar::VisualNavbar(MainWindow *main, QWidget *parent) :
|
2017-10-01 18:08:12 +00:00
|
|
|
QToolBar(main),
|
2017-12-08 15:00:52 +00:00
|
|
|
graphicsView(new QGraphicsView),
|
2018-01-27 11:15:58 +00:00
|
|
|
cursorGraphicsItem(nullptr),
|
2017-10-01 18:08:12 +00:00
|
|
|
main(main)
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-10-01 18:08:12 +00:00
|
|
|
Q_UNUSED(parent);
|
2017-04-09 17:09:35 +00:00
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
setObjectName("visualNavbar");
|
|
|
|
setWindowTitle(tr("Visual navigation bar"));
|
2017-04-09 19:55:06 +00:00
|
|
|
// setMovable(false);
|
2017-03-29 10:18:37 +00:00
|
|
|
setContentsMargins(0, 0, 0, 0);
|
2017-04-07 15:34:24 +00:00
|
|
|
// If line below is used, with the dark theme the paintEvent is not called
|
|
|
|
// and the result is wrong. Something to do with overwriting the style sheet :/
|
|
|
|
//setStyleSheet("QToolBar { border: 0px; border-bottom: 0px; border-top: 0px; border-width: 0px;}");
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
QComboBox *addsCombo = new QComboBox();
|
|
|
|
addsCombo->addItem("");
|
|
|
|
addsCombo->addItem("Entry points");
|
|
|
|
addsCombo->addItem("Marks");
|
|
|
|
*/
|
2017-12-08 15:00:52 +00:00
|
|
|
addWidget(this->graphicsView);
|
2017-03-29 10:18:37 +00:00
|
|
|
//addWidget(addsCombo);
|
2017-11-19 12:56:10 +00:00
|
|
|
|
2017-12-07 23:41:15 +00:00
|
|
|
connect(Core(), SIGNAL(seekChanged(RVA)), this, SLOT(on_seekChanged(RVA)));
|
|
|
|
connect(Core(), SIGNAL(refreshAll()), this, SLOT(fetchAndPaintData()));
|
2018-06-29 12:35:02 +00:00
|
|
|
connect(Core(), SIGNAL(functionsChanged()), this, SLOT(fetchAndPaintData()));
|
|
|
|
connect(Core(), SIGNAL(flagsChanged()), this, SLOT(fetchAndPaintData()));
|
2017-12-08 09:55:47 +00:00
|
|
|
|
|
|
|
graphicsScene = new QGraphicsScene(this);
|
2017-12-08 15:00:52 +00:00
|
|
|
|
|
|
|
const QBrush bg = QBrush(QColor(74, 74, 74));
|
|
|
|
|
|
|
|
graphicsScene->setBackgroundBrush(bg);
|
|
|
|
|
|
|
|
this->graphicsView->setAlignment(Qt::AlignLeft);
|
|
|
|
this->graphicsView->setMinimumHeight(20);
|
|
|
|
this->graphicsView->setMaximumHeight(20);
|
|
|
|
this->graphicsView->setFrameShape(QFrame::NoFrame);
|
|
|
|
this->graphicsView->setRenderHints(0);
|
|
|
|
this->graphicsView->setScene(graphicsScene);
|
|
|
|
this->graphicsView->setRenderHints(QPainter::Antialiasing);
|
2017-12-09 23:22:16 +00:00
|
|
|
this->graphicsView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
this->graphicsView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
// So the graphicsView doesn't intercept mouse events.
|
|
|
|
this->graphicsView->setEnabled(false);
|
|
|
|
this->graphicsView->setMouseTracking(true);
|
|
|
|
setMouseTracking(true);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
void VisualNavbar::paintEvent(QPaintEvent *event)
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2017-10-01 18:08:12 +00:00
|
|
|
Q_UNUSED(event);
|
2017-04-09 17:09:35 +00:00
|
|
|
|
|
|
|
QPainter painter(this);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (previousWidth != this->width()) {
|
2018-07-01 12:29:01 +00:00
|
|
|
fetchAndPaintData();
|
2017-12-08 15:00:52 +00:00
|
|
|
previousWidth = this->width();
|
2017-12-08 09:55:47 +00:00
|
|
|
}
|
2017-04-09 17:09:35 +00:00
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
void VisualNavbar::fetchAndPaintData()
|
2017-12-07 23:41:15 +00:00
|
|
|
{
|
|
|
|
fetchData();
|
|
|
|
fillData();
|
|
|
|
}
|
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
void VisualNavbar::fetchData()
|
2017-12-07 23:41:15 +00:00
|
|
|
{
|
2018-06-29 12:35:02 +00:00
|
|
|
statsWidth = graphicsView->width();
|
|
|
|
stats = Core()->getBlockStatistics((unsigned int)statsWidth);
|
2017-12-09 23:22:16 +00:00
|
|
|
}
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
enum class DataType: int { Empty, Code, String, Symbol, Count };
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
void VisualNavbar::fillData()
|
2017-04-09 19:55:06 +00:00
|
|
|
{
|
2018-06-29 12:35:02 +00:00
|
|
|
graphicsScene->clear();
|
|
|
|
xToAddress.clear();
|
|
|
|
cursorGraphicsItem = nullptr;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
graphicsScene->setBackgroundBrush(QBrush(Config()->getColor("gui.navbar.empty")));
|
2017-12-10 18:12:22 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
if (stats.to <= stats.from) {
|
|
|
|
return;
|
2017-12-09 23:22:16 +00:00
|
|
|
}
|
2017-11-19 12:56:10 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
int w = graphicsView->width();
|
|
|
|
int h = graphicsView->height();
|
2017-12-11 13:07:12 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
RVA totalSize = stats.to - stats.from;
|
2017-12-11 13:07:12 +00:00
|
|
|
|
2018-07-01 12:29:01 +00:00
|
|
|
printf("from: %llu, to %llu, first: %llu\n", stats.from, stats.to, stats.blocks[0].addr);
|
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
double widthPerByte = (double)w / (double)totalSize;
|
|
|
|
auto xFromAddr = [widthPerByte] (RVA addr) -> double {
|
|
|
|
return addr * widthPerByte;
|
|
|
|
};
|
2017-12-11 13:07:12 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
std::array<QBrush, static_cast<int>(DataType::Count)> dataTypeBrushes;
|
|
|
|
dataTypeBrushes[static_cast<int>(DataType::Code)] = QBrush(Config()->getColor("gui.navbar.code"));
|
|
|
|
dataTypeBrushes[static_cast<int>(DataType::String)] = QBrush(Config()->getColor("gui.navbar.str"));
|
|
|
|
dataTypeBrushes[static_cast<int>(DataType::Symbol)] = QBrush(Config()->getColor("gui.navbar.sym"));
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
DataType lastDataType = DataType::Empty;
|
|
|
|
QGraphicsRectItem *dataItem = nullptr;
|
|
|
|
QRectF dataItemRect(0.0, 0.0, 0.0, h);
|
|
|
|
for (const BlockDescription &block : stats.blocks) {
|
|
|
|
// Keep track of where which memory segment is mapped so we are able to convert from
|
|
|
|
// address to X coordinate and vice versa.
|
|
|
|
XToAddress x2a;
|
|
|
|
x2a.x_start = xFromAddr(block.addr);
|
|
|
|
x2a.x_end = xFromAddr(block.addr + block.size);
|
|
|
|
x2a.address_from = block.addr;
|
|
|
|
x2a.address_to = block.addr + block.size;
|
|
|
|
xToAddress.append(x2a);
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
DataType dataType;
|
2018-07-01 12:29:01 +00:00
|
|
|
if (block.inFunctions > 0) {
|
2018-06-29 12:35:02 +00:00
|
|
|
dataType = DataType::Code;
|
|
|
|
} else if (block.strings > 0) {
|
|
|
|
dataType = DataType::String;
|
|
|
|
} else if (block.symbols > 0) {
|
|
|
|
dataType = DataType::Symbol;
|
|
|
|
} else {
|
2018-07-01 12:29:01 +00:00
|
|
|
lastDataType = DataType::Empty;
|
2018-06-29 12:35:02 +00:00
|
|
|
continue;
|
2017-12-08 09:55:47 +00:00
|
|
|
}
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
if (dataType == lastDataType) {
|
2018-07-01 12:29:01 +00:00
|
|
|
double r = xFromAddr(block.addr + block.size);
|
|
|
|
if (r > dataItemRect.right()) {
|
|
|
|
dataItemRect.setRight(r);
|
|
|
|
dataItem->setRect(dataItemRect);
|
|
|
|
}
|
2018-06-29 12:35:02 +00:00
|
|
|
dataItem->setRect(dataItemRect);
|
|
|
|
continue;
|
|
|
|
}
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
dataItemRect.setX(xFromAddr(block.addr));
|
|
|
|
dataItemRect.setRight(xFromAddr(block.addr + block.size));
|
2017-12-09 23:22:16 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
dataItem = new QGraphicsRectItem();
|
|
|
|
dataItem->setPen(Qt::NoPen);
|
|
|
|
dataItem->setBrush(dataTypeBrushes[static_cast<int>(dataType)]);
|
|
|
|
graphicsScene->addItem(dataItem);
|
2017-12-09 23:22:16 +00:00
|
|
|
|
2018-06-29 12:35:02 +00:00
|
|
|
lastDataType = dataType;
|
2017-12-07 23:41:15 +00:00
|
|
|
}
|
2017-12-09 23:22:16 +00:00
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
// Update scene width
|
2018-07-01 12:29:01 +00:00
|
|
|
graphicsScene->setSceneRect(0, 0, w, h);
|
2017-12-07 23:41:15 +00:00
|
|
|
|
2017-12-08 12:21:24 +00:00
|
|
|
drawCursor();
|
|
|
|
}
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
void VisualNavbar::drawCursor()
|
2017-12-08 12:21:24 +00:00
|
|
|
{
|
|
|
|
RVA offset = Core()->getOffset();
|
|
|
|
double cursor_x = addressToLocalX(offset);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (cursorGraphicsItem != nullptr) {
|
2017-12-08 12:21:24 +00:00
|
|
|
graphicsScene->removeItem(cursorGraphicsItem);
|
|
|
|
delete cursorGraphicsItem;
|
2017-12-08 15:00:52 +00:00
|
|
|
cursorGraphicsItem = nullptr;
|
2017-12-08 12:21:24 +00:00
|
|
|
}
|
2018-03-21 20:32:32 +00:00
|
|
|
if (std::isnan(cursor_x)) {
|
2017-12-08 12:21:24 +00:00
|
|
|
return;
|
2017-12-07 23:41:15 +00:00
|
|
|
}
|
2017-12-08 15:00:52 +00:00
|
|
|
int h = this->graphicsView->height();
|
2017-12-08 12:21:24 +00:00
|
|
|
cursorGraphicsItem = new QGraphicsRectItem(cursor_x, 0, 2, h);
|
|
|
|
cursorGraphicsItem->setPen(Qt::NoPen);
|
2018-02-01 16:06:30 +00:00
|
|
|
cursorGraphicsItem->setBrush(QBrush(Config()->getColor("gui.navbar.err")));
|
2017-12-08 12:21:24 +00:00
|
|
|
graphicsScene->addItem(cursorGraphicsItem);
|
2017-12-07 23:41:15 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
void VisualNavbar::on_seekChanged(RVA addr)
|
2017-12-07 23:41:15 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(addr);
|
2018-02-01 16:06:30 +00:00
|
|
|
// Update cursor
|
2017-12-08 12:21:24 +00:00
|
|
|
this->drawCursor();
|
2017-12-07 23:41:15 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
void VisualNavbar::mousePressEvent(QMouseEvent *event)
|
2017-12-07 23:41:15 +00:00
|
|
|
{
|
|
|
|
qreal x = event->localPos().x();
|
2017-12-08 12:21:24 +00:00
|
|
|
RVA address = localXToAddress(x);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (address != RVA_INVALID) {
|
2017-12-09 23:22:16 +00:00
|
|
|
QToolTip::showText(event->globalPos(), toolTipForAddress(address), this);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (event->buttons() & Qt::LeftButton) {
|
2017-12-09 23:22:16 +00:00
|
|
|
event->accept();
|
|
|
|
Core()->seek(address);
|
|
|
|
}
|
2017-12-08 12:21:24 +00:00
|
|
|
}
|
2017-12-09 23:22:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VisualNavbar::mouseMoveEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
event->accept();
|
|
|
|
mousePressEvent(event);
|
2017-12-08 12:21:24 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
RVA VisualNavbar::localXToAddress(double x)
|
2017-12-08 12:21:24 +00:00
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
for (auto x2a : xToAddress) {
|
|
|
|
if ((x2a.x_start <= x) && (x <= x2a.x_end)) {
|
2017-12-07 23:41:15 +00:00
|
|
|
double offset = (x - x2a.x_start) / (x2a.x_end - x2a.x_start);
|
|
|
|
double size = x2a.address_to - x2a.address_from;
|
2017-12-08 12:21:24 +00:00
|
|
|
return x2a.address_from + (offset * size);
|
|
|
|
}
|
|
|
|
}
|
2017-12-08 15:00:52 +00:00
|
|
|
return RVA_INVALID;
|
2017-12-08 12:21:24 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 15:00:52 +00:00
|
|
|
double VisualNavbar::addressToLocalX(RVA address)
|
2017-12-08 12:21:24 +00:00
|
|
|
{
|
2018-03-21 20:32:32 +00:00
|
|
|
for (auto x2a : xToAddress) {
|
|
|
|
if ((x2a.address_from <= address) && (address < x2a.address_to)) {
|
2017-12-08 12:21:24 +00:00
|
|
|
double offset = (double)(address - x2a.address_from) / (double)(x2a.address_to - x2a.address_from);
|
|
|
|
double size = x2a.x_end - x2a.x_start;
|
|
|
|
return x2a.x_start + (offset * size);
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-08 12:21:24 +00:00
|
|
|
return nan("");
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
2017-12-09 23:22:16 +00:00
|
|
|
|
|
|
|
QList<QString> VisualNavbar::sectionsForAddress(RVA address)
|
|
|
|
{
|
|
|
|
QList<QString> ret;
|
2018-06-29 12:35:02 +00:00
|
|
|
QList<SectionDescription> sections = Core()->getAllSections();
|
|
|
|
for (const auto §ion : sections) {
|
|
|
|
if (address >= section.vaddr && address < section.vaddr + section.vsize) {
|
|
|
|
ret << section.name;
|
2017-12-09 23:22:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString VisualNavbar::toolTipForAddress(RVA address)
|
|
|
|
{
|
2017-12-10 18:12:22 +00:00
|
|
|
QString ret = "Address: " + RAddressString(address);
|
2017-12-09 23:22:16 +00:00
|
|
|
auto sections = sectionsForAddress(address);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (sections.count()) {
|
2017-12-10 18:12:22 +00:00
|
|
|
ret += "\nSections: \n";
|
2018-03-21 20:32:32 +00:00
|
|
|
for (auto section : sections) {
|
2017-12-10 18:12:22 +00:00
|
|
|
ret += " " + section + "\n";
|
|
|
|
}
|
2017-12-09 23:22:16 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|