radareorg / radare2

UNIX-like reverse engineering framework and command-line toolset
https://www.radare.org/
GNU Lesser General Public License v3.0
19.65k stars 2.94k forks source link

Rename expressions functionality #22813

Open satk0 opened 3 weeks ago

satk0 commented 3 weeks ago

Description

r2 could enable renaming the expressions, like the afvn command renames locals/arguments.

For instance:

Instead of hard to remember expression, like rbp + rax - 0x1020:

image

There could be a command that renames it to e.g. cwd[i] (it is just a concept, drawn in GIMP):

image

As Pancake said, such a renaming should only affect the context of the function and not be global.

trufae commented 3 weeks ago

You can do this with rpase plugins in c and js. If its ok for you we can close the ticket because im not sure if this should be a core feature of r2 because it looks quitw custom and hacky when the proper fix must be improving the variable analysis code

satk0 commented 3 weeks ago

As far as I know, no other disassembler has such a functionality, so that would make radare2 even more unique and customizable.

trufae commented 3 weeks ago

Yeah i agree on that. It can be very useful because it gives the user the ability to mess with the disassembly the eay they need like if it was made with pen and paper. But as long as doing it natively will require abi breaking changes and i think its better to do the change as plugins for now, having that implemented in C can be also useful because it will provide the feature in place and do it in a modular way

satk0 commented 2 weeks ago

Great that you agree with me on it. If I manage to create a plugin like this I would definitely post it here.