Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support type recovery and indirect call lifting #1180

Open
foiso001 opened this issue Oct 9, 2023 · 0 comments
Open

Support type recovery and indirect call lifting #1180

foiso001 opened this issue Oct 9, 2023 · 0 comments

Comments

@foiso001
Copy link

foiso001 commented Oct 9, 2023

I was trying to lift a c file that has a structure and indirect call. For example,

`typedef void(*FuncPtr)(int)

typedef struct {
int a;
FunctionPtr ptr;
} Container;

void execute(Container container) {
container.ptr(10);
}`

However, this structure is not recovered by retdec, it also does not recognize the indirect call made.

Can we augment retdec with this type of information and add some support for indirect call recognition?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant