]> git.siccegge.de Git - frida/frida.git/blob - src/gui/Mainwindow.cxx
place BasicBlockWidgets on the canvas
[frida/frida.git] / src / gui / Mainwindow.cxx
1 #include "Mainwindow.hxx"
2 #include "widgets/BasicBlockWidget.hxx"
3 #include "qt.hxx"
4 #include "disassembler/llvm/LLVMDisassembler.hxx"
5
6 #include <iostream>
7 #include <sstream>
8
9 #include <QtGui>
10
11 Mainwindow::Mainwindow(const std::string& filename)
12 {
13 openAction = new QAction(tr("&Open"), this);
14 // saveAction = new QAction(tr("&Save"), this);
15 exitAction = new QAction(tr("E&xit"), this);
16
17 connect(openAction, SIGNAL(triggered()), this, SLOT(open()));
18 // connect(saveAction, SIGNAL(triggered()), this, SLOT(save()));
19 connect(exitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
20
21 fileMenu = menuBar()->addMenu(tr("&File"));
22 fileMenu->addAction(openAction);
23 // fileMenu->addAction(saveAction);
24 fileMenu->addSeparator();
25 fileMenu->addAction(exitAction);
26
27 listWidget = new QListWidget();
28 stackedWidget = new QStackedWidget();
29 dockWidget = new QDockWidget(tr("Functions"), this);
30 dockWidget->setAllowedAreas(Qt::LeftDockWidgetArea |
31 Qt::RightDockWidgetArea);
32 dockWidget->setWidget(listWidget);
33 addDockWidget(Qt::LeftDockWidgetArea, dockWidget);
34 setCentralWidget(stackedWidget);
35
36 connect(listWidget, SIGNAL(currentRowChanged(int)),
37 stackedWidget, SLOT(setCurrentIndex(int)));
38
39 setWindowTitle(tr("FRIDA"));
40
41 openBinary(filename);
42 }
43
44 void Mainwindow::quit()
45 {
46 QMessageBox messageBox;
47 messageBox.setWindowTitle(tr("Notepad"));
48 messageBox.setText(tr("Do you really want to quit?"));
49 messageBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
50 messageBox.setDefaultButton(QMessageBox::No);
51 if (messageBox.exec() == QMessageBox::Yes)
52 qApp->quit();
53 }
54
55 void Mainwindow::open() {
56 QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "",
57 tr("Binaries (*)"));
58
59 openBinary(fileName.toStdString());
60 }
61
62 void Mainwindow::openBinary(const std::string& filename) {
63 if (filename != "") {
64 disassembler.reset(new LLVMDisassembler(filename));
65 disassembler->forEachFunction([&](uint64_t address, Function* fun) {
66 populateSymbolInformation(fun);
67 });
68 }
69 }
70
71 namespace {
72 void local__add_basic_block(BasicBlock * block, Disassembler * dis, QGraphicsScene * scene,
73 uint64_t starty, uint64_t startx) {
74 std::stringstream s;
75 s << "BLOCK_" << std::hex << block->getStartAddress();
76 BasicBlockWidget * widget = new BasicBlockWidget(s.str().c_str());
77 scene->addItem(widget);
78 widget->setFlag(QGraphicsItem::ItemIsMovable, true);
79 widget->moveBy(100*startx, 10*(block->getStartAddress() - starty));
80
81 if (block->getNextBlock(0) != 0)
82 local__add_basic_block(dis->getBasicBlock(block->getNextBlock(0)), dis, scene, starty, startx+1);
83 if (block->getNextBlock(1) != 0)
84 local__add_basic_block(dis->getBasicBlock(block->getNextBlock(1)), dis, scene, starty, startx-1);
85 }
86 }
87
88 void Mainwindow::populateSymbolInformation(Function* fun) {
89 QTabWidget * w = new QTabWidget();
90
91 // CFG
92 QGraphicsScene * scene = new QGraphicsScene;
93
94 BasicBlock * block = disassembler->getBasicBlock(fun->getStartAddress());
95
96 local__add_basic_block(block, disassembler.get(), scene, block->getStartAddress(), 100);
97
98 QGraphicsView * view = new QGraphicsView(scene);
99 w->addTab(view, "CFG");
100
101 // Listing
102 QTableWidget * t = new QTableWidget();
103 t->setColumnCount(3);
104 t->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
105 // curBin->for_each_instruction(sym, [&t](long add, std::string bytes, std::string mnemonic) {
106 // int row = t->rowCount();
107 // std::stringstream s;
108 // t->setRowCount(t->rowCount() + 1);
109 // s << std::hex << add;
110 // t->setItem(row,0,new QTableWidgetItem(s.str().c_str()));
111 // s.str("");
112 // s << std::hex;
113 // for_each(bytes.begin(), bytes.end(), [&s](char c){s << (unsigned int)((unsigned char)c) << ' ';});
114 // t->setItem(row,1,new QTableWidgetItem(s.str().c_str()));
115 // t->setItem(row,2,new QTableWidgetItem(mnemonic.c_str() + 1));
116 // });
117 w->addTab(t, "Listing");
118
119 listWidget->addItem(fun->getName().c_str());
120 stackedWidget->addWidget(w);
121 }