2017-10-10 10:17:05 +00:00
|
|
|
#include "DisassemblyContextMenu.h"
|
2017-12-14 13:42:24 +00:00
|
|
|
#include "dialogs/preferences/PreferencesDialog.h"
|
2018-02-12 20:12:13 +00:00
|
|
|
#include "dialogs/EditInstructionDialog.h"
|
2017-10-10 10:17:05 +00:00
|
|
|
#include "dialogs/CommentsDialog.h"
|
|
|
|
#include "dialogs/FlagDialog.h"
|
|
|
|
#include "dialogs/RenameDialog.h"
|
|
|
|
#include "dialogs/XrefsDialog.h"
|
2018-10-03 20:10:53 +00:00
|
|
|
#include "dialogs/SetFunctionVarTypes.h"
|
2018-08-04 18:05:56 +00:00
|
|
|
#include "dialogs/SetToDataDialog.h"
|
2018-10-22 09:16:56 +00:00
|
|
|
#include "dialogs/EditFunctionDialog.h"
|
2017-10-10 10:17:05 +00:00
|
|
|
#include <QtCore>
|
2017-11-03 11:31:20 +00:00
|
|
|
#include <QShortcut>
|
2018-02-12 20:12:13 +00:00
|
|
|
#include <QJsonArray>
|
2018-05-03 07:53:01 +00:00
|
|
|
#include <QClipboard>
|
|
|
|
#include <QApplication>
|
2017-10-10 10:17:05 +00:00
|
|
|
|
2017-11-19 17:49:29 +00:00
|
|
|
DisassemblyContextMenu::DisassemblyContextMenu(QWidget *parent)
|
|
|
|
: QMenu(parent),
|
|
|
|
offset(0),
|
2018-08-04 18:05:56 +00:00
|
|
|
canCopy(false)
|
|
|
|
{
|
|
|
|
initAction(&actionCopy, tr("Copy"), SLOT(on_actionCopy_triggered()), getCopySequence());
|
|
|
|
addAction(&actionCopy);
|
|
|
|
|
2017-12-02 15:43:21 +00:00
|
|
|
copySeparator = addSeparator();
|
2018-08-04 18:05:56 +00:00
|
|
|
|
2018-08-15 21:31:01 +00:00
|
|
|
initAction(&actionCopyAddr, tr("Copy address"), SLOT(on_actionCopyAddr_triggered()));
|
2018-08-04 18:05:56 +00:00
|
|
|
addAction(&actionCopyAddr);
|
|
|
|
|
|
|
|
initAction(&actionAddComment, tr("Add Comment"),
|
|
|
|
SLOT(on_actionAddComment_triggered()), getCommentSequence());
|
|
|
|
addAction(&actionAddComment);
|
|
|
|
|
|
|
|
initAction(&actionAddFlag, tr("Add Flag"),
|
|
|
|
SLOT(on_actionAddFlag_triggered()), getAddFlagSequence());
|
|
|
|
addAction(&actionAddFlag);
|
|
|
|
|
|
|
|
initAction(&actionRename, tr("Rename"),
|
|
|
|
SLOT(on_actionRename_triggered()), getRenameSequence());
|
|
|
|
addAction(&actionRename);
|
|
|
|
|
2018-10-22 09:16:56 +00:00
|
|
|
initAction(&actionEditFunction, tr("Edit function"),
|
2018-10-23 05:06:26 +00:00
|
|
|
SLOT(on_actionEditFunction_triggered()));
|
2018-10-22 09:16:56 +00:00
|
|
|
addAction(&actionEditFunction);
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(&actionRenameUsedHere, tr("Rename Flag/Fcn/Var Used Here"),
|
|
|
|
SLOT(on_actionRenameUsedHere_triggered()), getRenameUsedHereSequence());
|
|
|
|
addAction(&actionRenameUsedHere);
|
|
|
|
|
2018-10-03 20:10:53 +00:00
|
|
|
initAction(&actionSetFunctionVarTypes, tr("Re-type function local vars"),
|
|
|
|
SLOT(on_actionSetFunctionVarTypes_triggered()), getRetypeSequence());
|
|
|
|
addAction(&actionSetFunctionVarTypes);
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(&actionDeleteComment, tr("Delete comment"), SLOT(on_actionDeleteComment_triggered()));
|
|
|
|
addAction(&actionDeleteComment);
|
|
|
|
|
|
|
|
initAction(&actionDeleteFlag, tr("Delete flag"), SLOT(on_actionDeleteFlag_triggered()));
|
|
|
|
addAction(&actionDeleteFlag);
|
|
|
|
|
2018-09-26 12:43:37 +00:00
|
|
|
initAction(&actionDeleteFunction, tr("Undefine function"),
|
|
|
|
SLOT(on_actionDeleteFunction_triggered()));
|
2018-08-04 18:05:56 +00:00
|
|
|
addAction(&actionDeleteFunction);
|
|
|
|
|
2018-09-26 12:43:37 +00:00
|
|
|
initAction(&actionAnalyzeFunction, tr("Define function here..."),
|
|
|
|
SLOT(on_actionAnalyzeFunction_triggered()));
|
|
|
|
addAction(&actionAnalyzeFunction);
|
2018-08-18 19:28:04 +00:00
|
|
|
|
2018-10-22 09:16:56 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
addSetBaseMenu();
|
|
|
|
|
|
|
|
addSetBitsMenu();
|
|
|
|
|
|
|
|
initAction(&actionSetToCode, tr("Set to Code"),
|
|
|
|
SLOT(on_actionSetToCode_triggered()), getSetToCodeSequence());
|
|
|
|
addAction(&actionSetToCode);
|
|
|
|
|
|
|
|
addSetToDataMenu();
|
|
|
|
|
|
|
|
addSeparator();
|
|
|
|
|
|
|
|
initAction(&actionXRefs, tr("Show X-Refs"),
|
|
|
|
SLOT(on_actionXRefs_triggered()), getXRefSequence());
|
|
|
|
addAction(&actionXRefs);
|
|
|
|
|
|
|
|
initAction(&actionDisplayOptions, tr("Show Options"),
|
|
|
|
SLOT(on_actionDisplayOptions_triggered()), getDisplayOptionsSequence());
|
|
|
|
|
|
|
|
addSeparator();
|
|
|
|
|
|
|
|
addEditMenu();
|
|
|
|
|
|
|
|
addSeparator();
|
|
|
|
|
|
|
|
addDebugMenu();
|
|
|
|
|
|
|
|
connect(this, &DisassemblyContextMenu::aboutToShow,
|
|
|
|
this, &DisassemblyContextMenu::aboutToShowSlot);
|
|
|
|
}
|
|
|
|
|
|
|
|
DisassemblyContextMenu::~DisassemblyContextMenu()
|
|
|
|
{
|
|
|
|
for (QAction *action : anonymousActions) {
|
|
|
|
delete action;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::addSetBaseMenu()
|
|
|
|
{
|
|
|
|
setBaseMenu = addMenu(tr("Set Immediate Base to..."));
|
|
|
|
|
|
|
|
initAction(&actionSetBaseBinary, tr("Binary"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseBinary);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseBinary, &QAction::triggered, this, [this] { setBase("b"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBaseOctal, tr("Octal"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseOctal);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseOctal, &QAction::triggered, this, [this] { setBase("o"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBaseDecimal, tr("Decimal"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseDecimal);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseDecimal, &QAction::triggered, this, [this] { setBase("d"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBaseHexadecimal, tr("Hexadecimal"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseHexadecimal);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseHexadecimal, &QAction::triggered, this, [this] { setBase("h"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBasePort, tr("Network Port"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBasePort);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBasePort, &QAction::triggered, this, [this] { setBase("p"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBaseIPAddr, tr("IP Address"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseIPAddr);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseIPAddr, &QAction::triggered, this, [this] { setBase("i"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBaseSyscall, tr("Syscall"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseSyscall);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseSyscall, &QAction::triggered, this, [this] { setBase("S"); });
|
|
|
|
|
|
|
|
initAction(&actionSetBaseString, tr("String"));
|
2017-11-28 13:50:41 +00:00
|
|
|
setBaseMenu->addAction(&actionSetBaseString);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBaseString, &QAction::triggered, this, [this] { setBase("s"); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::addSetBitsMenu()
|
|
|
|
{
|
|
|
|
setBitsMenu = addMenu(tr("Set current bits to..."));
|
2018-02-12 09:48:06 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(&actionSetBits16, "16");
|
2018-02-12 09:48:06 +00:00
|
|
|
setBitsMenu->addAction(&actionSetBits16);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBits16, &QAction::triggered, this, [this] { setBits(16); });
|
|
|
|
|
|
|
|
initAction(&actionSetBits32, "32");
|
2018-02-12 09:48:06 +00:00
|
|
|
setBitsMenu->addAction(&actionSetBits32);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBits32, &QAction::triggered, this, [this] { setBits(32); });
|
|
|
|
|
|
|
|
initAction(&actionSetBits64, "64");
|
2018-02-12 09:48:06 +00:00
|
|
|
setBitsMenu->addAction(&actionSetBits64);
|
2018-08-04 18:05:56 +00:00
|
|
|
connect(&actionSetBits64, &QAction::triggered, this, [this] { setBits(64); });
|
|
|
|
}
|
2018-02-12 09:48:06 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::addSetToDataMenu()
|
|
|
|
{
|
|
|
|
setToDataMenu = addMenu(tr("Set to Data..."));
|
2017-11-28 13:13:22 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(&actionSetToDataByte, tr("Byte"));
|
|
|
|
setToDataMenu->addAction(&actionSetToDataByte);
|
|
|
|
connect(&actionSetToDataByte, &QAction::triggered, this, [this] { setToData(1); });
|
|
|
|
|
|
|
|
initAction(&actionSetToDataWord, tr("Word"));
|
|
|
|
setToDataMenu->addAction(&actionSetToDataWord);
|
|
|
|
connect(&actionSetToDataWord, &QAction::triggered, this, [this] { setToData(2); });
|
|
|
|
|
|
|
|
initAction(&actionSetToDataDword, tr("Dword"));
|
|
|
|
setToDataMenu->addAction(&actionSetToDataDword);
|
|
|
|
connect(&actionSetToDataDword, &QAction::triggered, this, [this] { setToData(4); });
|
|
|
|
|
|
|
|
initAction(&actionSetToDataQword, tr("Qword"));
|
|
|
|
setToDataMenu->addAction(&actionSetToDataQword);
|
|
|
|
connect(&actionSetToDataQword, &QAction::triggered, this, [this] { setToData(8); });
|
|
|
|
|
|
|
|
initAction(&actionSetToDataEx, "...",
|
|
|
|
SLOT(on_actionSetToDataEx_triggered()), getSetToDataExSequence());
|
|
|
|
setToDataMenu->addAction(&actionSetToDataEx);
|
|
|
|
|
|
|
|
auto switchAction = new QAction();
|
|
|
|
initAction(switchAction, "Switch Data",
|
|
|
|
SLOT(on_actionSetToData_triggered()), getSetToDataSequence());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::addEditMenu()
|
|
|
|
{
|
|
|
|
editMenu = addMenu(tr("Edit"));
|
|
|
|
|
|
|
|
initAction(&actionEditInstruction, tr("Instruction"), SLOT(on_actionEditInstruction_triggered()));
|
2018-02-12 20:12:13 +00:00
|
|
|
editMenu->addAction(&actionEditInstruction);
|
2018-08-04 18:05:56 +00:00
|
|
|
|
|
|
|
initAction(&actionNopInstruction, tr("Nop Instruction"), SLOT(on_actionNopInstruction_triggered()));
|
2018-03-05 14:20:55 +00:00
|
|
|
editMenu->addAction(&actionNopInstruction);
|
2018-02-12 20:12:13 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(&actionEditBytes, tr("Bytes"), SLOT(on_actionEditBytes_triggered()));
|
|
|
|
editMenu->addAction(&actionEditBytes);
|
2018-06-12 08:43:14 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(&actionJmpReverse, tr("Reverse Jump"), SLOT(on_actionJmpReverse_triggered()));
|
|
|
|
editMenu->addAction(&actionJmpReverse);
|
2017-11-28 13:50:41 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::addDebugMenu()
|
2017-12-10 20:40:15 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
debugMenu = addMenu(tr("Debug"));
|
|
|
|
|
|
|
|
initAction(&actionAddBreakpoint, tr("Add/remove breakpoint"),
|
|
|
|
SLOT(on_actionAddBreakpoint_triggered()), getAddBPSequence());
|
|
|
|
debugMenu->addAction(&actionAddBreakpoint);
|
|
|
|
|
|
|
|
initAction(&actionContinueUntil, tr("Continue until line"),
|
|
|
|
SLOT(on_actionContinueUntil_triggered()));
|
|
|
|
debugMenu->addAction(&actionContinueUntil);
|
|
|
|
|
|
|
|
initAction(&actionSetPC, "Set PC", SLOT(on_actionSetPC_triggered()));
|
|
|
|
debugMenu->addAction(&actionSetPC);
|
2017-12-10 20:40:15 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 13:50:41 +00:00
|
|
|
void DisassemblyContextMenu::setOffset(RVA offset)
|
|
|
|
{
|
|
|
|
this->offset = offset;
|
|
|
|
}
|
|
|
|
|
2017-12-02 15:43:21 +00:00
|
|
|
void DisassemblyContextMenu::setCanCopy(bool enabled)
|
|
|
|
{
|
|
|
|
this->canCopy = enabled;
|
|
|
|
}
|
|
|
|
|
2017-11-28 13:50:41 +00:00
|
|
|
void DisassemblyContextMenu::aboutToShowSlot()
|
|
|
|
{
|
|
|
|
// check if set immediate base menu makes sense
|
2018-03-21 20:32:32 +00:00
|
|
|
QJsonObject instObject = Core()->cmdj("aoj @ " + QString::number(
|
2018-10-27 15:55:22 +00:00
|
|
|
offset)).array().first().toObject();
|
2017-11-28 13:50:41 +00:00
|
|
|
auto keys = instObject.keys();
|
|
|
|
bool immBase = keys.contains("val") || keys.contains("ptr");
|
2018-08-04 18:05:56 +00:00
|
|
|
setBaseMenu->menuAction()->setVisible(immBase);
|
|
|
|
setBitsMenu->menuAction()->setVisible(true);
|
2017-12-01 10:46:13 +00:00
|
|
|
|
2018-08-18 19:28:04 +00:00
|
|
|
actionAnalyzeFunction.setVisible(true);
|
2017-12-11 13:07:12 +00:00
|
|
|
|
2017-12-10 18:13:37 +00:00
|
|
|
QString comment = Core()->cmd("CC." + RAddressString(offset));
|
2018-03-21 20:32:32 +00:00
|
|
|
if (comment.isNull() || comment.isEmpty()) {
|
2017-12-11 13:07:12 +00:00
|
|
|
actionDeleteComment.setVisible(false);
|
2017-12-01 10:46:13 +00:00
|
|
|
actionAddComment.setText(tr("Add Comment"));
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-12-11 13:07:12 +00:00
|
|
|
actionDeleteComment.setVisible(true);
|
2017-12-01 10:46:13 +00:00
|
|
|
actionAddComment.setText(tr("Edit Comment"));
|
|
|
|
}
|
2017-12-02 15:43:21 +00:00
|
|
|
|
|
|
|
actionCopy.setVisible(canCopy);
|
|
|
|
copySeparator->setVisible(canCopy);
|
2017-12-03 20:23:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
RCore *core = Core()->core();
|
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_at (core->anal, offset, R_ANAL_FCN_TYPE_NULL);
|
2018-10-03 20:10:53 +00:00
|
|
|
RAnalFunction *in_fcn = Core()->functionAt(offset);
|
2017-12-03 20:23:02 +00:00
|
|
|
RFlagItem *f = r_flag_get_i (core->flags, offset);
|
2017-12-11 13:07:12 +00:00
|
|
|
|
|
|
|
actionDeleteFlag.setVisible(f ? true : false);
|
|
|
|
actionDeleteFunction.setVisible(fcn ? true : false);
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
if (fcn) {
|
2018-08-18 19:28:04 +00:00
|
|
|
actionAnalyzeFunction.setVisible(false);
|
2017-12-03 20:23:02 +00:00
|
|
|
actionRename.setVisible(true);
|
|
|
|
actionRename.setText(tr("Rename function \"%1\"").arg(fcn->name));
|
2018-03-21 20:32:32 +00:00
|
|
|
} else if (f) {
|
2017-12-03 20:23:02 +00:00
|
|
|
actionRename.setVisible(true);
|
|
|
|
actionRename.setText(tr("Rename flag \"%1\"").arg(f->name));
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-12-03 20:23:02 +00:00
|
|
|
actionRename.setVisible(false);
|
|
|
|
}
|
2017-11-30 14:16:39 +00:00
|
|
|
|
2018-10-03 20:10:53 +00:00
|
|
|
//only show retype for local vars if in a function
|
2018-10-27 15:55:22 +00:00
|
|
|
if (in_fcn) {
|
2018-10-03 20:10:53 +00:00
|
|
|
actionSetFunctionVarTypes.setVisible(true);
|
2018-10-22 22:31:50 +00:00
|
|
|
actionEditFunction.setVisible(true);
|
|
|
|
actionEditFunction.setText(tr("Edit function \"%1\"").arg(in_fcn->name));
|
2018-10-27 15:55:22 +00:00
|
|
|
} else {
|
2018-10-03 20:10:53 +00:00
|
|
|
actionSetFunctionVarTypes.setVisible(false);
|
2018-10-22 22:31:50 +00:00
|
|
|
actionEditFunction.setVisible(false);
|
2018-10-03 20:10:53 +00:00
|
|
|
}
|
|
|
|
|
2017-11-30 14:16:39 +00:00
|
|
|
|
|
|
|
// only show "rename X used here" if there is something to rename
|
2017-11-30 21:18:09 +00:00
|
|
|
QJsonArray thingUsedHereArray = Core()->cmdj("anj @ " + QString::number(offset)).array();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (!thingUsedHereArray.isEmpty()) {
|
2017-11-30 14:16:39 +00:00
|
|
|
actionRenameUsedHere.setVisible(true);
|
2017-11-30 21:18:09 +00:00
|
|
|
QJsonObject thingUsedHere = thingUsedHereArray.first().toObject();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (thingUsedHere["type"] == "address") {
|
2017-11-30 21:18:09 +00:00
|
|
|
RVA offset = thingUsedHere["offset"].toVariant().toULongLong();
|
|
|
|
actionRenameUsedHere.setText(tr("Add flag at %1 (used here)").arg(RAddressString(offset)));
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2018-11-03 16:00:19 +00:00
|
|
|
if (thingUsedHere["type"] == "function") {
|
|
|
|
actionRenameUsedHere.setText(tr("Rename \"%1\"").arg(thingUsedHere["name"].toString()));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
actionRenameUsedHere.setText(tr("Rename \"%1\" (used here)").arg(thingUsedHere["name"].toString()));
|
|
|
|
}
|
2017-11-30 21:18:09 +00:00
|
|
|
}
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-11-30 14:16:39 +00:00
|
|
|
actionRenameUsedHere.setVisible(false);
|
|
|
|
}
|
2018-03-10 07:27:09 +00:00
|
|
|
|
|
|
|
// decide to show Reverse jmp option
|
|
|
|
showReverseJmpQuery();
|
|
|
|
|
2018-07-01 21:29:38 +00:00
|
|
|
// only show debug options if we are currently debugging
|
2018-08-04 18:05:56 +00:00
|
|
|
debugMenu->menuAction()->setVisible(Core()->currentlyDebugging);
|
2018-07-23 23:13:46 +00:00
|
|
|
QString progCounterName = Core()->getRegisterName("PC");
|
|
|
|
actionSetPC.setText("Set " + progCounterName + " here");
|
2018-07-01 21:29:38 +00:00
|
|
|
|
2017-12-02 15:43:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QKeySequence DisassemblyContextMenu::getCopySequence() const
|
|
|
|
{
|
|
|
|
return QKeySequence::Copy;
|
2017-11-28 13:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QKeySequence DisassemblyContextMenu::getCommentSequence() const
|
|
|
|
{
|
2018-01-16 14:29:33 +00:00
|
|
|
return {Qt::Key_Semicolon};
|
2017-11-28 13:50:41 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
QKeySequence DisassemblyContextMenu::getSetToCodeSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::Key_C};
|
|
|
|
}
|
|
|
|
|
|
|
|
QKeySequence DisassemblyContextMenu::getSetToDataSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::Key_D};
|
|
|
|
}
|
|
|
|
|
|
|
|
QKeySequence DisassemblyContextMenu::getSetToDataExSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::Key_Asterisk};
|
|
|
|
}
|
|
|
|
|
2017-11-28 13:50:41 +00:00
|
|
|
QKeySequence DisassemblyContextMenu::getAddFlagSequence() const
|
|
|
|
{
|
|
|
|
return {}; //TODO insert correct sequence
|
|
|
|
}
|
|
|
|
|
|
|
|
QKeySequence DisassemblyContextMenu::getRenameSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::Key_N};
|
|
|
|
}
|
|
|
|
|
2017-11-30 14:16:39 +00:00
|
|
|
QKeySequence DisassemblyContextMenu::getRenameUsedHereSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::SHIFT + Qt::Key_N};
|
|
|
|
}
|
|
|
|
|
2018-10-03 20:10:53 +00:00
|
|
|
QKeySequence DisassemblyContextMenu::getRetypeSequence() const
|
|
|
|
{
|
2018-10-23 05:06:26 +00:00
|
|
|
return {Qt::Key_Y};
|
2018-10-03 20:10:53 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 13:50:41 +00:00
|
|
|
QKeySequence DisassemblyContextMenu::getXRefSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::Key_X};
|
|
|
|
}
|
|
|
|
|
|
|
|
QKeySequence DisassemblyContextMenu::getDisplayOptionsSequence() const
|
|
|
|
{
|
|
|
|
return {}; //TODO insert correct sequence
|
2017-10-10 10:17:05 +00:00
|
|
|
}
|
|
|
|
|
2018-07-17 07:26:20 +00:00
|
|
|
QList<QKeySequence> DisassemblyContextMenu::getAddBPSequence() const
|
|
|
|
{
|
|
|
|
return {Qt::Key_F2, Qt::CTRL + Qt::Key_B};
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:12:13 +00:00
|
|
|
void DisassemblyContextMenu::on_actionEditInstruction_triggered()
|
|
|
|
{
|
2018-10-23 05:06:26 +00:00
|
|
|
EditInstructionDialog *e = new EditInstructionDialog(this, EDIT_TEXT);
|
2018-02-12 20:12:13 +00:00
|
|
|
e->setWindowTitle(tr("Edit Instruction at %1").arg(RAddressString(offset)));
|
|
|
|
|
2018-09-14 17:20:54 +00:00
|
|
|
QString oldInstructionOpcode = Core()->getInstructionOpcode(offset);
|
|
|
|
QString oldInstructionBytes = Core()->getInstructionBytes(offset);
|
|
|
|
|
|
|
|
e->setInstruction(oldInstructionOpcode);
|
2018-02-12 20:12:13 +00:00
|
|
|
|
2018-09-26 12:43:37 +00:00
|
|
|
if (e->exec()) {
|
2018-09-14 17:20:54 +00:00
|
|
|
QString userInstructionOpcode = e->getInstruction();
|
|
|
|
if (userInstructionOpcode != oldInstructionOpcode) {
|
|
|
|
Core()->editInstruction(offset, userInstructionOpcode);
|
|
|
|
|
|
|
|
// check if the write failed
|
|
|
|
auto newInstructionBytes = Core()->getInstructionBytes(offset);
|
|
|
|
if (newInstructionBytes == oldInstructionBytes) {
|
2018-10-27 15:55:22 +00:00
|
|
|
if (!writeFailed()) {
|
|
|
|
Core()->editInstruction(offset, userInstructionOpcode);
|
|
|
|
}
|
2018-09-14 17:20:54 +00:00
|
|
|
}
|
2018-02-12 20:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 14:20:55 +00:00
|
|
|
void DisassemblyContextMenu::on_actionNopInstruction_triggered()
|
|
|
|
{
|
2018-09-14 17:20:54 +00:00
|
|
|
QString oldBytes = Core()->getInstructionBytes(offset);
|
|
|
|
|
2018-03-05 14:20:55 +00:00
|
|
|
Core()->nopInstruction(offset);
|
2018-09-14 17:20:54 +00:00
|
|
|
|
|
|
|
QString newBytes = Core()->getInstructionBytes(offset);
|
|
|
|
if (oldBytes == newBytes) {
|
2018-10-27 15:55:22 +00:00
|
|
|
if (!writeFailed()) {
|
|
|
|
Core()->nopInstruction(offset);
|
|
|
|
}
|
2018-09-14 17:20:54 +00:00
|
|
|
}
|
2018-03-05 14:20:55 +00:00
|
|
|
}
|
|
|
|
|
2018-03-10 07:27:09 +00:00
|
|
|
void DisassemblyContextMenu::showReverseJmpQuery()
|
|
|
|
{
|
|
|
|
QString type;
|
|
|
|
|
|
|
|
QJsonArray array = Core()->cmdj("pdj 1 @ " + RAddressString(offset)).array();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (array.isEmpty()) {
|
2018-03-10 07:27:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = array.first().toObject()["type"].toString();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (type == "cjmp") {
|
2018-03-10 07:27:09 +00:00
|
|
|
actionJmpReverse.setVisible(true);
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2018-03-10 07:27:09 +00:00
|
|
|
actionJmpReverse.setVisible(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::on_actionJmpReverse_triggered()
|
|
|
|
{
|
2018-09-14 17:20:54 +00:00
|
|
|
QString oldBytes = Core()->getInstructionBytes(offset);
|
|
|
|
|
2018-03-10 07:27:09 +00:00
|
|
|
Core()->jmpReverse(offset);
|
2018-09-14 17:20:54 +00:00
|
|
|
|
|
|
|
QString newBytes = Core()->getInstructionBytes(offset);
|
|
|
|
if (oldBytes == newBytes) {
|
2018-10-27 15:55:22 +00:00
|
|
|
if (!writeFailed()) {
|
|
|
|
Core()->jmpReverse(offset);
|
|
|
|
}
|
2018-09-14 17:20:54 +00:00
|
|
|
}
|
2018-03-10 07:27:09 +00:00
|
|
|
}
|
|
|
|
|
2018-02-12 20:12:13 +00:00
|
|
|
void DisassemblyContextMenu::on_actionEditBytes_triggered()
|
|
|
|
{
|
2018-10-23 05:06:26 +00:00
|
|
|
EditInstructionDialog *e = new EditInstructionDialog(this, EDIT_BYTES);
|
2018-02-12 20:12:13 +00:00
|
|
|
e->setWindowTitle(tr("Edit Bytes at %1").arg(RAddressString(offset)));
|
|
|
|
|
2018-09-14 17:20:54 +00:00
|
|
|
QString oldBytes = Core()->getInstructionBytes(offset);
|
2018-02-12 20:12:13 +00:00
|
|
|
e->setInstruction(oldBytes);
|
|
|
|
|
2018-09-26 12:43:37 +00:00
|
|
|
if (e->exec()) {
|
2018-02-12 20:12:13 +00:00
|
|
|
QString bytes = e->getInstruction();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (bytes != oldBytes) {
|
2018-02-12 20:12:13 +00:00
|
|
|
Core()->editBytes(offset, bytes);
|
2018-09-14 17:20:54 +00:00
|
|
|
|
|
|
|
QString newBytes = Core()->getInstructionBytes(offset);
|
|
|
|
if (oldBytes == newBytes) {
|
2018-10-27 15:55:22 +00:00
|
|
|
if (!writeFailed()) {
|
|
|
|
Core()->editBytes(offset, bytes);
|
|
|
|
}
|
2018-09-14 17:20:54 +00:00
|
|
|
}
|
2018-02-12 20:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-27 15:55:22 +00:00
|
|
|
bool DisassemblyContextMenu::writeFailed()
|
2018-09-14 17:20:54 +00:00
|
|
|
{
|
|
|
|
QMessageBox msgBox;
|
|
|
|
msgBox.setIcon(QMessageBox::Icon::Critical);
|
|
|
|
msgBox.setWindowTitle(tr("Write error"));
|
2018-10-27 15:55:22 +00:00
|
|
|
msgBox.setText(
|
|
|
|
tr("Unable to complete write operation. Consider opening in write mode. \n\nWARNING: In write mode any changes will be commited to disk"));
|
2018-09-14 17:20:54 +00:00
|
|
|
msgBox.addButton(tr("OK"), QMessageBox::NoRole);
|
2018-10-27 15:55:22 +00:00
|
|
|
QAbstractButton *reopenButton = msgBox.addButton(tr("Reopen in write mode and try again"),
|
|
|
|
QMessageBox::YesRole);
|
2018-09-14 17:20:54 +00:00
|
|
|
|
|
|
|
msgBox.exec();
|
|
|
|
|
|
|
|
if (msgBox.clickedButton() == reopenButton) {
|
|
|
|
Core()->cmd("oo+");
|
2018-10-27 15:55:22 +00:00
|
|
|
return false;
|
2018-09-14 17:20:54 +00:00
|
|
|
}
|
2018-10-27 15:55:22 +00:00
|
|
|
|
|
|
|
return true;
|
2018-09-14 17:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-12-02 15:43:21 +00:00
|
|
|
void DisassemblyContextMenu::on_actionCopy_triggered()
|
|
|
|
{
|
|
|
|
emit copy();
|
|
|
|
}
|
|
|
|
|
2018-05-03 07:53:01 +00:00
|
|
|
void DisassemblyContextMenu::on_actionCopyAddr_triggered()
|
|
|
|
{
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
|
|
|
clipboard->setText(RAddressString(offset));
|
|
|
|
}
|
|
|
|
|
2018-06-12 08:43:14 +00:00
|
|
|
void DisassemblyContextMenu::on_actionAddBreakpoint_triggered()
|
|
|
|
{
|
2018-07-17 07:26:20 +00:00
|
|
|
Core()->toggleBreakpoint(offset);
|
2018-06-12 08:43:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::on_actionContinueUntil_triggered()
|
|
|
|
{
|
|
|
|
Core()->continueUntilDebug(RAddressString(offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::on_actionSetPC_triggered()
|
|
|
|
{
|
|
|
|
QString progCounterName = Core()->getRegisterName("PC");
|
|
|
|
Core()->setRegister(progCounterName, RAddressString(offset));
|
|
|
|
}
|
|
|
|
|
2017-10-10 10:17:05 +00:00
|
|
|
void DisassemblyContextMenu::on_actionAddComment_triggered()
|
|
|
|
{
|
2017-12-10 18:13:37 +00:00
|
|
|
QString oldComment = Core()->cmd("CC." + RAddressString(offset));
|
|
|
|
// Remove newline at the end added by cmd
|
2018-03-21 20:32:32 +00:00
|
|
|
oldComment.remove(oldComment.length() - 1, 1);
|
2017-10-10 10:17:05 +00:00
|
|
|
CommentsDialog *c = new CommentsDialog(this);
|
2017-12-01 10:46:13 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
if (oldComment.isNull() || oldComment.isEmpty()) {
|
2017-12-01 10:46:13 +00:00
|
|
|
c->setWindowTitle(tr("Add Comment at %1").arg(RAddressString(offset)));
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-12-01 10:46:13 +00:00
|
|
|
c->setWindowTitle(tr("Edit Comment at %1").arg(RAddressString(offset)));
|
|
|
|
}
|
|
|
|
|
|
|
|
c->setComment(oldComment);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (c->exec()) {
|
2017-10-10 10:17:05 +00:00
|
|
|
QString comment = c->getComment();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (comment.isEmpty()) {
|
2017-12-01 10:46:13 +00:00
|
|
|
Core()->delComment(offset);
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-12-01 10:46:13 +00:00
|
|
|
Core()->setComment(offset, comment);
|
|
|
|
}
|
2017-10-10 10:17:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-18 19:28:04 +00:00
|
|
|
void DisassemblyContextMenu::on_actionAnalyzeFunction_triggered()
|
2017-12-10 20:40:15 +00:00
|
|
|
{
|
|
|
|
RenameDialog *dialog = new RenameDialog(this);
|
2018-08-18 19:28:04 +00:00
|
|
|
dialog->setWindowTitle(tr("Analyze function at %1").arg(RAddressString(offset)));
|
2018-09-26 12:43:37 +00:00
|
|
|
dialog->setPlaceholderText(tr("Function name"));
|
2018-03-21 20:32:32 +00:00
|
|
|
if (dialog->exec()) {
|
2017-12-10 20:40:15 +00:00
|
|
|
QString function_name = dialog->getName();
|
|
|
|
Core()->createFunctionAt(offset, function_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-10 10:17:05 +00:00
|
|
|
void DisassemblyContextMenu::on_actionAddFlag_triggered()
|
|
|
|
{
|
|
|
|
FlagDialog *dialog = new FlagDialog(offset, this->parentWidget());
|
|
|
|
dialog->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::on_actionRename_triggered()
|
|
|
|
{
|
2017-11-26 16:53:05 +00:00
|
|
|
RCore *core = Core()->core();
|
2017-11-08 09:02:39 +00:00
|
|
|
|
2017-10-10 10:17:05 +00:00
|
|
|
RenameDialog *dialog = new RenameDialog(this);
|
2017-11-26 16:53:05 +00:00
|
|
|
|
2017-12-03 20:23:02 +00:00
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_at (core->anal, offset, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
RFlagItem *f = r_flag_get_i (core->flags, offset);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (fcn) {
|
2017-12-03 20:23:02 +00:00
|
|
|
/* Rename function */
|
|
|
|
dialog->setWindowTitle(tr("Rename function %1").arg(fcn->name));
|
|
|
|
dialog->setName(fcn->name);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (dialog->exec()) {
|
2017-12-03 20:23:02 +00:00
|
|
|
QString new_name = dialog->getName();
|
|
|
|
Core()->renameFunction(fcn->name, new_name);
|
2017-11-26 16:53:05 +00:00
|
|
|
}
|
2018-03-21 20:32:32 +00:00
|
|
|
} else if (f) {
|
2017-12-03 20:23:02 +00:00
|
|
|
/* Rename current flag */
|
|
|
|
dialog->setWindowTitle(tr("Rename flag %1").arg(f->name));
|
|
|
|
dialog->setName(f->name);
|
2018-03-21 20:32:32 +00:00
|
|
|
if (dialog->exec()) {
|
2017-12-03 20:23:02 +00:00
|
|
|
QString new_name = dialog->getName();
|
|
|
|
Core()->renameFlag(f->name, new_name);
|
2017-11-26 16:53:05 +00:00
|
|
|
}
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-12-03 20:23:02 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-10-10 10:17:05 +00:00
|
|
|
}
|
|
|
|
|
2017-11-30 14:16:39 +00:00
|
|
|
void DisassemblyContextMenu::on_actionRenameUsedHere_triggered()
|
|
|
|
{
|
2017-11-30 21:18:09 +00:00
|
|
|
QJsonArray array = Core()->cmdj("anj @ " + QString::number(offset)).array();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (array.isEmpty()) {
|
2017-11-30 14:16:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-30 21:18:09 +00:00
|
|
|
QJsonObject thingUsedHere = array.first().toObject();
|
|
|
|
QString type = thingUsedHere.value("type").toString();
|
|
|
|
|
2017-11-30 14:16:39 +00:00
|
|
|
RenameDialog *dialog = new RenameDialog(this);
|
2017-11-30 21:18:09 +00:00
|
|
|
|
2017-11-30 21:30:51 +00:00
|
|
|
QString oldName;
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
if (type == "address") {
|
2017-11-30 21:18:09 +00:00
|
|
|
RVA offset = thingUsedHere["offset"].toVariant().toULongLong();
|
|
|
|
dialog->setWindowTitle(tr("Add flag at %1").arg(RAddressString(offset)));
|
|
|
|
dialog->setName("label." + QString::number(offset, 16));
|
2018-03-21 20:32:32 +00:00
|
|
|
} else {
|
2017-11-30 21:30:51 +00:00
|
|
|
oldName = thingUsedHere.value("name").toString();
|
2017-11-30 21:18:09 +00:00
|
|
|
dialog->setWindowTitle(tr("Rename %1").arg(oldName));
|
|
|
|
dialog->setName(oldName);
|
|
|
|
}
|
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
if (dialog->exec()) {
|
2017-11-30 21:18:09 +00:00
|
|
|
QString newName = dialog->getName().trimmed();
|
2018-03-21 20:32:32 +00:00
|
|
|
if (!newName.isEmpty()) {
|
2017-11-30 21:18:09 +00:00
|
|
|
Core()->cmd("an " + newName + " @ " + QString::number(offset));
|
2017-11-30 21:30:51 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
if (type == "address" || type == "flag") {
|
2017-11-30 21:30:51 +00:00
|
|
|
Core()->triggerFlagsChanged();
|
2018-03-21 20:32:32 +00:00
|
|
|
} else if (type == "var") {
|
2017-11-30 21:30:51 +00:00
|
|
|
Core()->triggerVarsChanged();
|
2018-03-21 20:32:32 +00:00
|
|
|
} else if (type == "function") {
|
2017-11-30 21:30:51 +00:00
|
|
|
Core()->triggerFunctionRenamed(oldName, newName);
|
|
|
|
}
|
2017-11-30 21:18:09 +00:00
|
|
|
}
|
2017-11-30 14:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 20:10:53 +00:00
|
|
|
void DisassemblyContextMenu::on_actionSetFunctionVarTypes_triggered()
|
|
|
|
{
|
|
|
|
SetFunctionVarTypes *dialog;
|
|
|
|
|
|
|
|
|
|
|
|
RAnalFunction *fcn = Core()->functionAt(offset);
|
|
|
|
|
|
|
|
dialog = new SetFunctionVarTypes(this);
|
|
|
|
|
2018-10-27 15:55:22 +00:00
|
|
|
if (fcn) {
|
2018-10-03 20:10:53 +00:00
|
|
|
dialog->setWindowTitle(tr("Set Variable Types for Function: %1").arg(fcn->name));
|
|
|
|
}
|
|
|
|
dialog->setFcn(fcn);
|
|
|
|
|
|
|
|
dialog->exec();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-10-10 10:17:05 +00:00
|
|
|
void DisassemblyContextMenu::on_actionXRefs_triggered()
|
|
|
|
{
|
|
|
|
XrefsDialog *dialog = new XrefsDialog(this);
|
|
|
|
dialog->fillRefsForAddress(offset, RAddressString(offset), false);
|
|
|
|
dialog->exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisassemblyContextMenu::on_actionDisplayOptions_triggered()
|
|
|
|
{
|
2017-12-14 13:42:24 +00:00
|
|
|
auto *dialog = new PreferencesDialog(this->window());
|
|
|
|
dialog->showSection(PreferencesDialog::Section::Disassembly);
|
2017-10-10 10:17:05 +00:00
|
|
|
dialog->show();
|
|
|
|
}
|
2017-11-28 13:13:22 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionSetToCode_triggered()
|
2017-12-11 13:07:12 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->setToCode(offset);
|
2017-12-11 13:07:12 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionSetToData_triggered()
|
2017-12-11 13:07:12 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
int size = Core()->sizeofDataMeta(offset);
|
|
|
|
if (size > 8 || (size && (size & (size - 1)))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (size == 0 || size == 8) {
|
|
|
|
size = 1;
|
|
|
|
} else {
|
|
|
|
size *= 2;
|
|
|
|
}
|
|
|
|
setToData(size);
|
2017-11-28 13:13:22 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionSetToDataEx_triggered()
|
2017-11-28 13:13:22 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
auto dialog = new SetToDataDialog(offset, this->window());
|
|
|
|
if (!dialog->exec()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setToData(dialog->getItemSize(), dialog->getItemCount());
|
2017-11-28 13:13:22 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionDeleteComment_triggered()
|
2017-11-28 13:13:22 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->delComment(offset);
|
2017-11-28 13:13:22 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionDeleteFlag_triggered()
|
2017-11-28 13:13:22 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->delFlag(offset);
|
2017-11-28 13:13:22 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionDeleteFunction_triggered()
|
2017-11-28 13:13:22 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->delFunction(offset);
|
2017-11-28 13:13:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 09:16:56 +00:00
|
|
|
void DisassemblyContextMenu::on_actionEditFunction_triggered()
|
|
|
|
{
|
|
|
|
RCore *core = Core()->core();
|
|
|
|
EditFunctionDialog *dialog = new EditFunctionDialog(this);
|
2018-10-22 22:31:50 +00:00
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in(core->anal, offset, 0);
|
2018-10-22 09:16:56 +00:00
|
|
|
|
2018-10-22 22:31:50 +00:00
|
|
|
if (fcn) {
|
|
|
|
dialog->setWindowTitle(tr("Edit function %1").arg(fcn->name));
|
|
|
|
dialog->setNameText(fcn->name);
|
2018-10-22 09:16:56 +00:00
|
|
|
|
2018-10-22 22:31:50 +00:00
|
|
|
QString startAddrText = "0x" + QString::number(fcn->addr, 16);
|
|
|
|
dialog->setStartAddrText(startAddrText);
|
2018-10-22 09:16:56 +00:00
|
|
|
|
2018-10-22 22:31:50 +00:00
|
|
|
QString endAddrText = "0x" + QString::number(fcn->addr + fcn->_size, 16);
|
|
|
|
dialog->setEndAddrText(endAddrText);
|
2018-10-22 09:16:56 +00:00
|
|
|
|
2018-10-22 22:31:50 +00:00
|
|
|
QString stackSizeText;
|
|
|
|
stackSizeText.sprintf("%d", fcn->stack);
|
|
|
|
dialog->setStackSizeText(stackSizeText);
|
2018-10-22 09:16:56 +00:00
|
|
|
|
2018-10-22 22:31:50 +00:00
|
|
|
QStringList callConList = Core()->cmd("afcl").split("\n");
|
|
|
|
callConList.removeLast();
|
|
|
|
dialog->setCallConList(callConList);
|
|
|
|
dialog->setCallConSelected(fcn->cc);
|
2018-10-22 09:16:56 +00:00
|
|
|
|
|
|
|
|
2018-10-22 22:31:50 +00:00
|
|
|
if (dialog->exec()) {
|
|
|
|
QString new_name = dialog->getNameText();
|
|
|
|
Core()->renameFunction(fcn->name, new_name);
|
|
|
|
QString new_start_addr = dialog->getStartAddrText();
|
|
|
|
fcn->addr = Core()->math(new_start_addr);
|
|
|
|
QString new_end_addr = dialog->getEndAddrText();
|
|
|
|
Core()->cmd("afu " + new_end_addr);
|
|
|
|
QString new_stack_size = dialog->getStackSizeText();
|
|
|
|
fcn->stack = int(Core()->math(new_stack_size));
|
|
|
|
Core()->cmd("afc " + dialog->getCallConSelected());
|
|
|
|
emit Core()->functionsChanged();
|
|
|
|
}
|
2018-10-22 09:16:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::setBase(QString base)
|
2017-11-28 13:13:22 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->setImmediateBase(base, offset);
|
2017-11-28 13:13:22 +00:00
|
|
|
}
|
2017-12-10 20:40:15 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::setBits(int bits)
|
2018-02-12 09:48:06 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->setCurrentBits(bits, offset);
|
2018-02-12 09:48:06 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::setToData(int size, int repeat)
|
2018-02-12 09:48:06 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
Core()->setToData(offset, size, repeat);
|
2018-02-12 09:48:06 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
QAction *DisassemblyContextMenu::addAnonymousAction(QString name, const char *slot,
|
2018-10-27 15:55:22 +00:00
|
|
|
QKeySequence keySequence)
|
2018-02-12 09:48:06 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
auto action = new QAction();
|
|
|
|
addAction(action);
|
|
|
|
anonymousActions.append(action);
|
|
|
|
initAction(action, name, slot, keySequence);
|
|
|
|
return action;
|
2018-02-12 09:48:06 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::initAction(QAction *action, QString name, const char *slot)
|
2017-12-10 20:40:15 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
action->setParent(this);
|
|
|
|
action->setText(name);
|
|
|
|
if (slot) {
|
|
|
|
connect(action, SIGNAL(triggered(bool)), this, slot);
|
|
|
|
}
|
2017-12-10 20:40:15 +00:00
|
|
|
}
|
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::initAction(QAction *action, QString name,
|
|
|
|
const char *slot, QKeySequence keySequence)
|
2017-12-10 20:40:15 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(action, name, slot);
|
|
|
|
if (keySequence.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-12-10 20:40:15 +00:00
|
|
|
action->setShortcut(keySequence);
|
|
|
|
auto pWidget = parentWidget();
|
2018-08-04 18:05:56 +00:00
|
|
|
auto shortcut = new QShortcut(keySequence, pWidget);
|
2017-12-10 20:40:15 +00:00
|
|
|
shortcut->setContext(Qt::WidgetWithChildrenShortcut);
|
|
|
|
connect(shortcut, SIGNAL(activated()), this, slot);
|
|
|
|
}
|
2018-07-17 07:26:20 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
void DisassemblyContextMenu::initAction(QAction *action, QString name,
|
|
|
|
const char *slot, QList<QKeySequence> keySequenceList)
|
2018-07-17 07:26:20 +00:00
|
|
|
{
|
2018-08-04 18:05:56 +00:00
|
|
|
initAction(action, name, slot);
|
|
|
|
if (keySequenceList.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
action->setShortcuts(keySequenceList);
|
2018-07-17 07:26:20 +00:00
|
|
|
auto pWidget = parentWidget();
|
2018-08-04 18:05:56 +00:00
|
|
|
for (auto keySequence : keySequenceList) {
|
|
|
|
auto shortcut = new QShortcut(keySequence, pWidget);
|
2018-07-17 07:26:20 +00:00
|
|
|
shortcut->setContext(Qt::WidgetWithChildrenShortcut);
|
|
|
|
connect(shortcut, SIGNAL(activated()), this, slot);
|
|
|
|
}
|
2018-08-04 18:05:56 +00:00
|
|
|
}
|