Closed ChiChou closed 3 months ago
This pull request has no test code yet. I wonder if it's possible for the CI to run the simulator..
Note that the module lookup logic is still problematic under other cases. Here are 2 examples:
They both throw the following exception, but the root cause should be different.
module not found at "/usr/lib/libSystem.B.dylib"
Ooh, great catch! Thanks! 🙌
The patch for https://github.com/frida/frida/issues/2763
frida has stoppped working on iOS simulators for months, getting
module not found at "/usr/lib/libSystem.B.dylib"
error. The root cause is the logic for getting sysroot stops working.Had some discussion with @mrmacete yesterday at 0x41con. We talked about reading env remotely, but surprisingly found the current implementation has a cheat to simply detect the location of
dyld_sim
. However the assumtion thatdyld_sim
is the first loaded image is no longer true. We need one more loop to initialize sysroot before putting them to the lookup table.Also I believe this is the correct patch for https://github.com/frida/frida-swift-bridge/pull/18
Kudos to Francesco for helping me to set up the latest env and understand the source! 🙌