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

Add PANDA API to inject page faults for i386 and mips #1103

Draft
wants to merge 10 commits into
base: dev
Choose a base branch
from

Conversation

AndrewFasano
Copy link
Member

@AndrewFasano AndrewFasano commented Oct 13, 2021

If a panda_virtual_memory_... function fails due to paged out memory, panda_page_fault() allows you to force the guest to page in that memory and return execution to a PC of your choice (typically the same PC you were at before).

Using this as a fallback for when memory is unavailable requires some intentional design of your analysis code - if you identify that memory is unavailable, you should request the page fault, bail, and then have your analysis restart after the page fault is resolved. With syscalls2 based callbacks, this is easy as you will get the on_sys_... callback again after the fault is resolved. In other situations, it may be more difficult.

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

Successfully merging this pull request may close these issues.

None yet

2 participants