Resolve OEM inline hook veneers to prevent infinite recursion#579
Open
JingMatrix wants to merge 1 commit intomasterfrom
Open
Resolve OEM inline hook veneers to prevent infinite recursion#579JingMatrix wants to merge 1 commit intomasterfrom
JingMatrix wants to merge 1 commit intomasterfrom
Conversation
On heavily customized Android ROMs, the OEM dynamically hotpatches libart.so methods using a 16-byte ARM64 veneer (`ldr x16/17, pc+8; br x16/17`). When Dobby attempts to hook these pre-applied veneers, its literal relocator handles the `ldr x, pc+offset` instruction incorrectly by reading the overwritten literal pool at runtime, resulting in an infinite recursion loop and a SIGSEGV (stack overflow) in system_server. This commit introduces a workaround for ARM64: we actively check if the target address starts with this known trampoline signature. If found, we extract the absolute address from `pc+8` and apply our hook directly to the OEM's real implementation. This safely chains our hooks onto the OEM's hotpatch framework. Currently experimental and primarily for testing purposes.
Owner
Author
|
This pull-request is unlikely to be merged, we however provide local logs to illustrate the issues addressed here: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
On heavily customized Android ROMs, the OEM dynamically hotpatches libart.so methods using a 16-byte ARM64 veneer (
ldr x16/17, pc+8; br x16/17).When Dobby attempts to hook these pre-applied veneers, its literal relocator handles the
ldr x, pc+offsetinstruction incorrectly by reading the overwritten literal pool at runtime, resulting in an infinite recursion loop and a SIGSEGV (stack overflow) in system_server.This commit introduces a workaround for ARM64: we actively check if the target address starts with this known trampoline signature. If found, we extract the absolute address from
pc+8and apply our hook directly to the OEM's real implementation.This safely chains our hooks onto the OEM's hotpatch framework. Currently experimental and primarily for testing purposes.