We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The patch image is loaded further than 2gb away in memory and thus we cannot re-link call instructions with an offset that fits in 4 bytes
The text was updated successfully, but these errors were encountered:
This same problem applies to relinking load/stores of global variables with mov instructions who's destination register is only 32bits.
8b 2d f0 ad 00 00: mov 0xadf0(%rip), %ebp
The instruction above only has 3 bytes for encoding the offset, and we need 4 bytes to reach the patch target (The global variable).
Sorry, something went wrong.
elfmaster
No branches or pull requests
The patch image is loaded further than 2gb away in memory and thus we cannot re-link call instructions with an offset that fits in 4 bytes
The text was updated successfully, but these errors were encountered: