-
Notifications
You must be signed in to change notification settings - Fork 474
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
dynamic: Refactor logic to perform multiple updates #1702
base: master
Are you sure you want to change the base?
Commits on Mar 11, 2024
-
dynamic: Load dynamic info only once
This is in preparation of runtime dynamic patching. This commit guarantees that dynamic info is read only once for the target binary and for each module. Co-authored-by: Gabriel-Andrew Pollo-Guilbert <[email protected]> Signed-off-by: Clément Guidi <[email protected]> Signed-off-by: Seyed-Vahid Azhari <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 62cefa1 - Browse repository at this point
Copy the full SHA 62cefa1View commit details -
dynamic: Initialize size filter only once
If 'mcount_dynamic_update' is called multiple times (e.g. at runtime), it initializes the size filter only once. Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 671829d - Browse repository at this point
Copy the full SHA 671829dView commit details -
dynamic: arch: Initialize disassembly engine once
Skip the initialization of the disassembly engine with it has already been performed. Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a4466df - Browse repository at this point
Copy the full SHA a4466dfView commit details -
dynamic: Archive pattern list after update
After patching, clear the pattern list for reuse. However, archive its content in a separate aggregated list. This list contains all applied patterns and is used applied again when when opening a dynamic library. Co-authored-by: Gabriel-Andrew Pollo-Guilbert <[email protected]> Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1654b9c - Browse repository at this point
Copy the full SHA 1654b9cView commit details -
dynamic: Refactor 'mcount_dynamic_update'
The 'mcount_dynamic_update' is now safe to call multiple times, including at runtime. On each call, it will perform patching and unpatching of the target (not implemented yet). Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3e5ae01 - Browse repository at this point
Copy the full SHA 3e5ae01View commit details -
dynamic: Streamline trampoline life cycle
Install a trampoline for each loaded module map, on initialization. Keep the trampolines in memory to allow for dynamic patching at runtime. Clear the trampolines on libmcount exit. Co-authored-by: Gabriel-Andrew Pollo-Guilbert <[email protected]> Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3e89e6d - Browse repository at this point
Copy the full SHA 3e89e6dView commit details -
mcount: Use flag to indicate if target is running
Use a global flag to indicate the state of the target. When the target is not running, tasks such as dynamic patching can be performed with less constraints. If libmcount.so is dynamically injected (not implemented yet), the 'mcount_target_running' flag indicates that libmcount has to be initialized in a running target. Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5a150da - Browse repository at this point
Copy the full SHA 5a150daView commit details -
dynamic: Init arch-specific structures
Trigger architecture specific dynamic initialization when initializing the dynamic instrumentation mechanics. Co-authored-by: Gabriel-Andrew Pollo-Guilbert <[email protected]> Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ad3cbf6 - Browse repository at this point
Copy the full SHA ad3cbf6View commit details -
dynamic: Save original instructions only once
Don't save instructions if they are already present in the code hmap. Signed-off-by: Clément Guidi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c4ba8e1 - Browse repository at this point
Copy the full SHA c4ba8e1View commit details