X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=blobdiff_plain;f=src%2Fgui%2FMainwindow.cxx;h=5e47b25871227bc791e9354021f49d2e5d0a7466;hp=3e26227ad6acd086854dfe7ab08a1d347c2b605f;hb=a977c730a10c8549974d85a1d31f0846e28f1bc9;hpb=9023eb3885faa52eb9729b61b401e5b131199c0d diff --git a/src/gui/Mainwindow.cxx b/src/gui/Mainwindow.cxx index 3e26227..5e47b25 100644 --- a/src/gui/Mainwindow.cxx +++ b/src/gui/Mainwindow.cxx @@ -1,33 +1,44 @@ -#include "Mainwindow.h++" + #include "Mainwindow.hxx" +#include "widgets/BasicBlockWidget.hxx" +#include "qt.hxx" +#include "disassembler/llvm/LLVMDisassembler.hxx" + +#include +#include #include -Mainwindow::Mainwindow() +Mainwindow::Mainwindow(const std::string& filename) { - // openAction = new QAction(tr("&Open"), this); + openAction = new QAction(tr("&Open"), this); // saveAction = new QAction(tr("&Save"), this); exitAction = new QAction(tr("E&xit"), this); - // connect(openAction, SIGNAL(triggered()), this, SLOT(open())); + connect(openAction, SIGNAL(triggered()), this, SLOT(open())); // connect(saveAction, SIGNAL(triggered()), this, SLOT(save())); connect(exitAction, SIGNAL(triggered()), qApp, SLOT(quit())); fileMenu = menuBar()->addMenu(tr("&File")); - // fileMenu->addAction(openAction); + fileMenu->addAction(openAction); // fileMenu->addAction(saveAction); - // fileMenu->addSeparator(); + fileMenu->addSeparator(); fileMenu->addAction(exitAction); - // - // setCentralWidget(textEdit); + listWidget = new QListWidget(); + stackedWidget = new QStackedWidget(); + dockWidget = new QDockWidget(tr("Functions"), this); + dockWidget->setAllowedAreas(Qt::LeftDockWidgetArea | + Qt::RightDockWidgetArea); + dockWidget->setWidget(listWidget); + addDockWidget(Qt::LeftDockWidgetArea, dockWidget); + setCentralWidget(stackedWidget); - tabwidget = new QTabWidget; - setCentralWidget(tabwidget); + connect(listWidget, SIGNAL(currentRowChanged(int)), + stackedWidget, SLOT(setCurrentIndex(int))); - textEdit = new QTextEdit; - tabwidget->addTab(textEdit, "edit"); + setWindowTitle(tr("FRIDA")); - setWindowTitle(tr("Notepad")); + openBinary(filename); } void Mainwindow::quit() @@ -42,5 +53,69 @@ void Mainwindow::quit() } void Mainwindow::open() { + QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "", + tr("Binaries (*)")); + + openBinary(fileName.toStdString()); +} + +void Mainwindow::openBinary(const std::string& filename) { + if (filename != "") { + disassembler.reset(new LLVMDisassembler(filename)); + disassembler->forEachFunction([&](uint64_t address, Function* fun) { + populateSymbolInformation(fun); + }); + } +} + +namespace { + void local__add_basic_block(BasicBlock * block, Disassembler * dis, QGraphicsScene * scene, + uint64_t starty, uint64_t startx) { + std::stringstream s; + s << "BLOCK_" << std::hex << block->getStartAddress(); + BasicBlockWidget * widget = new BasicBlockWidget(s.str().c_str()); + scene->addItem(widget); + widget->setFlag(QGraphicsItem::ItemIsMovable, true); + widget->moveBy(100*startx, 10*(block->getStartAddress() - starty)); + + if (block->getNextBlock(0) != 0) + local__add_basic_block(dis->getBasicBlock(block->getNextBlock(0)), dis, scene, starty, startx+1); + if (block->getNextBlock(1) != 0) + local__add_basic_block(dis->getBasicBlock(block->getNextBlock(1)), dis, scene, starty, startx-1); + } +} + +void Mainwindow::populateSymbolInformation(Function* fun) { + QTabWidget * w = new QTabWidget(); + + // CFG + QGraphicsScene * scene = new QGraphicsScene; + + BasicBlock * block = disassembler->getBasicBlock(fun->getStartAddress()); + + local__add_basic_block(block, disassembler.get(), scene, block->getStartAddress(), 100); + + QGraphicsView * view = new QGraphicsView(scene); + w->addTab(view, "CFG"); + + // Listing + QTableWidget * t = new QTableWidget(); + t->setColumnCount(3); + t->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); + // curBin->for_each_instruction(sym, [&t](long add, std::string bytes, std::string mnemonic) { + // int row = t->rowCount(); + // std::stringstream s; + // t->setRowCount(t->rowCount() + 1); + // s << std::hex << add; + // t->setItem(row,0,new QTableWidgetItem(s.str().c_str())); + // s.str(""); + // s << std::hex; + // for_each(bytes.begin(), bytes.end(), [&s](char c){s << (unsigned int)((unsigned char)c) << ' ';}); + // t->setItem(row,1,new QTableWidgetItem(s.str().c_str())); + // t->setItem(row,2,new QTableWidgetItem(mnemonic.c_str() + 1)); + // }); + w->addTab(t, "Listing"); + listWidget->addItem(fun->getName().c_str()); + stackedWidget->addWidget(w); }