-
Notifications
You must be signed in to change notification settings - Fork 52
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
frida-gum API allows some memory safety mistakes #98
Comments
Wow. Thanks for the audit. I think your suggestions are excellent. I’d be happy to see PRs for them. Any chance you will get to it? |
Hi, I'm glad you have been finding the library helpful.
I agree, this should be addressed by passing a Gum. There are possibly other APIs that don't respect this either that should be fixed.
With the stabilization of OnceCell I was considering rewriting all of the examples we have to use that instead of lazy_static, and in the process fixing issues of this kind. I think I'd rather change the behaviour to keep Drop for Gum to deinitialize Frida, and instead make multiple uses of obtain invalid (failing with an assertion, and documenting this behaviour). Let me know what you think.
Agreed. Thanks for the helpful suggestions. Patches are welcome, otherwise one of us will get to it whenever possible. |
In order to use the underlying C API global init should be called. We hence force the creation of Gum to use Module::* functions. We also use OnceLock instead of lazy_static! as discussed in the issue.
* frida-gum: force frida-gum init to use Module (#98) In order to use the underlying C API global init should be called. We hence force the creation of Gum to use Module::* functions. We also use OnceLock instead of lazy_static! as discussed in the issue. * CR: s/from_gum/obtain/ * frida-gum: clippy
Hi! Thank you so much for your work on this library, it seems to be among the highest quality hook implementations available in Rust and this is awesome.
I'm integrating
frida_gum
into a new project and I found some foot guns. I am not sure if I am going to get around to submitting patches, but I am writing these down for the sake of writing them down. Fixing these is going to need to break API.I realize that this library exists to do wildly unsafe things, and indeed I intend to do wildly unsafe things with it, but I think that in the business of doing wildly unsafe things, cats can have little a compile-time enforced safety as a treat.
This is a brief list of the things I found while lightly auditing the library to learn how to use it:
Module::enumerate_modules() segfaults if you don't initialize Gum but is marked safe.
Suggested fix: take a
&
reference to theGum
instance on all functions that require it to be initialized. This will not restrict use cases because you can just stick the Gum in a static OnceCell, lazy_static, etc and get a&'static
to it. It should compile down to nothing since Gum is zero sized.Secondary question to ask here: are there frida-gum-sys functions that are thread-unsafe? Should there be a zero sized GumThreadToken or something that isn't Sync that you can pull one of out of the
Gum
instance with anunsafe fn
, then put in a static mutex or such, where you can prove that you are the right thread to invoke them?The Gum destructor deinitializes the Gum library, which should be documented. This has surprising behaviour and implies that you probably should not have more than one
Gum
: if youobtain()
a second Gum and then drop it, the gum C library will be deinitialized. Confusingly, the docs say that callingobtain()
more times is fine, which it is, but only if youmem::forget()
the further instances.Suggested fix: This fact should be documented and probably a suggestion given to use something like a OnceCell in a static and initialize it at startup. Maybe a second version of
obtain()
should give you an Arc.The Interceptor transaction system should probably use a guard object to automatically end the transaction when it falls out of scope
Suggested fix: create a guard object that is DerefMut to the inner Interceptor, assuming that nested transactions are acceptable [edit: they are] (as it would allow creating a nested transaction).
If not, move the operations of Interceptor into a trait and impl it on both the guard and the Interceptor.The text was updated successfully, but these errors were encountered: